개요
- 함수 preg_match()
PHP
preg_match('/^def/', "abcdef", $matches);
print_r($matches);
# Array
# (
# )
preg_match('/^def/', "defghi", $matches);
print_r($matches);
# Array
# (
# [0] => def
# )
preg_match('/^def/', "abcdef", $matches);
print_r($matches);
# Array
# (
# )
preg_match('/^def/', "defghi", $matches);
print_r($matches);
# Array
# (
# [0] => def
# )