preg_last_error_msg

(PHP 8)

preg_last_error_msg返回最后一次 PCRE 正则表达式执行的错误消息

描述

preg_last_error_msg(): string

返回最后一次 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

参见

添加注释

用户贡献注释

此页面没有用户贡献注释。
To Top