略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: preg_last_error_msg

2024-05-01

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

参见

add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/function.preg-last-error-msg.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3