PHP.nl

preg_last_error_msg

preg_last_error_msg

Returns the error message of the last PCRE regex execution

string **preg_last_error_msg**

Returns the error message of the last PCRE regex execution.

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

Voorbeeld: 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