這篇文章主要介紹了PHP preg_match實現Regex匹配功能,較為詳細的介紹了preg_match函數的功能、參數含義、傳回值及使用方法,並結合執行個體給出了preg_match輸出是否匹配及匹配值的相關實現技巧,需要的朋友可以參考下
preg_match — 執行一個Regex匹配
preg_match ( $pattern , $subject , $matches )
搜尋subject與pattern給定的Regex的一個匹配.
參數 :
pattern : 要搜尋的模式,字串類型(Regex)。
subject : 輸入的字串。
matches :(可有可無)如果提供了參數matches,它將被填充為搜尋結果。 $matches[0]將包含完整模式比對到的文本, $matches[1] 將包含第一個捕獲子組匹配到的文本,以此類推。
傳回值 :
preg_match()返回 pattern 的匹配次數。 它的值將是0次(不匹配)或1次,因為preg_match()在第一次匹配後 將會停止搜尋。preg_match_all()不同於此,它會一直搜尋subject 直到到達結尾。 如果發生錯誤preg_match()返回 FALSE。
執行個體1:
$label = 'content/112';$a = preg_match('#content/(\d+)#i', $label, $mc);var_dump($a);var_dump($mc);
輸出:
int(1)array(2) { [0]=> string(11) "content/112" [1]=> string(3) "112"}
執行個體2:
$label = 'content/112';$a = preg_match('#(\w+)/(\d+)#i', $label, $mc);var_dump($a);var_dump($mc);
輸出:
int(1)array(3) { [0]=> string(11) "content/112" [1]=> string(7) "content" [2]=> string(3) "112"}
執行個體3:
$label = 'content/112';$a = preg_match('#content1111111/(\d+)#i', $label, $mc);var_dump($a);var_dump($mc);
輸出:
int(0)array(0) {}
相關推薦:
PHP preg_match的匹配多國語言的技巧
php preg_match_all結合str_replace替換內容中所有img
php preg_matchRegex函數執行個體