1 $REGEX = '[expression]'; 2 $result; 3 preg_match_all($REGEX, [string], $result);이렇게 해주게 되면 $result 변수에 매치되는 내용들이 모두 배열로 저장됨.
PS. preg_match 함수를 사용해주면 한가지만 추출해줌.
'Develop > PHP' 카테고리의 다른 글
[PHP] Array 사용시. (0) | 2012.04.27 |
---|---|
[PHP] json_encode_function (0) | 2012.04.27 |
[PHP] Object sorting (0) | 2012.04.27 |
[PHP] error handler 만들기 (0) | 2012.04.27 |
[PHP] 한글 자음모음 분리 함수 (0) | 2012.04.27 |