preg_last_error_msg

(PHP 8)

preg_last_error_msgReturns the error message of the last PCRE regex execution

Açıklama

preg_last_error_msg ( ) : string

Returns the error message of the last PCRE regex execution.

Değiştirgeler

Bu işlevin değiştirgesi yoktur.

Dönen Değerler

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

Örnekler

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

?>

Yukarıdaki örneğin çıktısı:

Backtrack limit exhausted

Ayrıca Bakınız

  • preg_last_error() - Son PCRE düzenli ifade aramasından dönen hatayı döndürür