728x90
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$text = '내 이름은 [김똥개]입니다. 나이는 [10살]입니다.'; | |
preg_match_all("/\[[^\]]*\]/", $text, $matches); | |
print_r($matches); | |
/* | |
Array | |
( | |
[0] => Array | |
( | |
[0] => [김똥개] | |
[1] => [10살] | |
) | |
) | |
*/ | |
preg_match_all("/\[([^\]]*)\]/", $text, $matches); | |
print_r($matches); | |
/* | |
Array | |
( | |
[0] => Array | |
( | |
[0] => [김똥개] | |
[1] => [10살] | |
) | |
[1] => Array | |
( | |
[0] => 김똥개 | |
[1] => 10살 | |
) | |
) | |
*/ |
얼핏 보면 둘 같아 보이지만 패턴 부분이 약간 차이가 있습니다.
첫 번째 : "/\[[^\]]*\]/"
두 번째 : "/\[([^\]]*)\]/"
반응형
'Programming > PHP' 카테고리의 다른 글
Fatal error: Allowed memory size of 1xxxxxxxx bytes exhausted (2) | 2024.03.29 |
---|---|
[Codeigniter 3]htaccess https && remove index.php (0) | 2024.03.18 |
[정규표현식]연락처에 하이픈 넣기 (0) | 2024.01.30 |
PHPMailer로 메일 보낼 때의 오류(smtp.office365.com) (0) | 2023.11.14 |
달력 (0) | 2023.11.08 |