Returns the error message of the last PCRE regex execution

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

參見

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *