preg_last_error_msg

(PHP 8)

preg_last_error_msgReturns the error message of the last PCRE regex execution

說(shuō)明

preg_last_error_msg(): string

Returns the error message of the last PCRE regex execution.

參數(shù)

此函數(shù)沒(méi)有參數(shù)。

返回值

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();
}

?>

以上例程會(huì)輸出:

Backtrack limit exhausted

參見(jiàn)

  • preg_last_error() - 返回最后一個(gè)PCRE正則執(zhí)行產(chǎn)生的錯(cuò)誤代碼