함수 preg_match()


1 개요[ | ]

함수 preg_match()

2 PHP[ | ]

preg_match('/^def/', "abcdef", $matches);
print_r($matches);
# Array
# (
# )
preg_match('/^def/', "defghi", $matches);
print_r($matches);
# Array
# (
#     [0] => def
# )
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}