(PHP 8)
preg_last_error_msg — 返回最后一次 PCRE 正则表达式执行的错误消息
此函数没有参数。
成功时返回错误消息,如果没有发生错误,则返回 "No error"
。
示例 #1 preg_last_error_msg() 示例
<?php
preg_match('/(?:\D+|<\d+>)*[!?]/', 'foobar foobar foobar');
if (preg_last_error() !== PREG_NO_ERROR) {
echo preg_last_error_msg();
}
?>
上面的示例将输出
Backtrack limit exhausted