preg_last_error_msg Returns the error message of the last PCRE regex execution

发表日期:2021-07-01 08:56:56 | 来源: | | 浏览(833) 分类:PCRE 函数

preg_last_error_msg

(PHP 8)

preg_last_error_msgReturns the error message of the last PCRE regex execution

说明

preg_last_error_msg(): string

Returns the error message of the last PCRE regex execution.

参数

此函数没有参数。

返回值

Returns the error message on success, or "No error" if no error has occurred.

范例

示例 #1 preg_last_error_msg() example

<?php 
preg_match('/(?:\D+|<\d+>)*[!?]/', 'foobar foobar foobar');
if (preg_last_error() !== PREG_NO_ERROR) {
    echo preg_last_error_msg();
}
?>

以上例程会输出:

Backtrack limit exhausted

参见

  • preg_last_error() - 返回最后一个PCRE正则执行产生的错误代码

集速网 copyRight © 2015-2022 宁ICP备15000399号-1 宁公网安备 64010402001209号
与其临渊羡鱼,不如退而结网
欢迎转载、分享、引用、推荐、收藏。