Dutch PHP Conference 2025 - Call For Papers

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 note

User Contributed Notes

There are no user contributed notes for this page.
To Top