array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'function.preg-last-error-msg.php', 1 => 'preg_last_error_msg', 2 => 'Returns the error message of the last PCRE regex execution', ), 'up' => array ( 0 => 'ref.pcre.php', 1 => 'Функції PCRE', ), 'prev' => array ( 0 => 'function.preg-last-error.php', 1 => 'preg_last_error', ), 'next' => array ( 0 => 'function.preg-match.php', 1 => 'preg_match', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/pcre/functions/preg-last-error-msg.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

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

Прогляньте також