preg_last_error 函數(shù)用于返回最后一個 PCRE 正則執(zhí)行產(chǎn)生的錯誤代碼。
int preg_last_error ( void )
<?php
preg_match('/(?:\D+|<\d+>)*[!?]/', 'foobar foobar foobar');
if (preg_last_error() == PREG_BACKTRACK_LIMIT_ERROR) {
print 'Backtrack limit was exhausted!';
}
?>
執(zhí)行結(jié)果如下所示:
Backtrack limit was exhausted!
參數(shù)詳細說明可查看:PHP 正則表達式(PCRE)