在php中preg_match()函數是用來執行Regex的一個常用的函數。Regex幾乎在所有程式設計語言裡面都會用到,本執行個體介紹php中Regexpreg_match函數的應用。
preg_match() 函數用於進行Regex匹配,成功返回 1 ,否則返回 0 。
preg_match() 匹配成功一次後就會停止匹配,如果要實現全部結果的匹配,則需使用 preg_match_all() 函數。
文法:
preg_match (pattern , subject, matches)
執行個體:
此執行個體匹配大寫字母後面帶有.和空格的字串,只能匹配到J. ,因為preg_match() 匹配成功一次後就會停止匹配,後面不會再匹配了。
<?php$str="Daniel J. Gross Catholic High School A. is a faith and family based community committed to developing Christian leaders through educational excellence in the Marianist tradition.";if(preg_match("/[A-Z]. /",$str,$matches)){print_r($matches);}?>
輸出結果:
Array ( [0] => J. )
下面給大家介紹preg_match字串長度問題
preg_match正則提取目標內容,死活有問題,代碼測得死去活來。
後來懷疑PHP 的preg_match有字串長度限制,果然,發現“pcre.backtrack_limit ”的值預設只設了100000。
解決辦法:
ini_set('pcre.backtrack_limit', 999999999);
註:這個參數在php 5.2.0版本之後可用。
另外說說關於:pcre.recursion_limit
pcre.recursion_limit是PCRE的遞迴限制,這個項如果設很大的值,會消耗所有進程的可用堆棧,最後導致PHP崩潰。
也可以通過修改配置來限制:
ini_set('pcre.recursion_limit', 99999);
實際項目應用中,最好也對記憶體進行限定設定:ini_set('memory_limit', '64M'); , 這樣就比較穩妥妥嘎。