Statement on glibc/iconv Vulnerability

preg_last_error_msg

(PHP 8)

preg_last_error_msgReturns the error message of the last PCRE regex execution

Descrição

preg_last_error_msg(): string

Returns the error message of the last PCRE regex execution.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

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

Exemplos

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

?>

O exemplo acima produzirá:

Backtrack limit exhausted

Veja Também

  • preg_last_error() - Retorna o código de erro da última expressão regular PCRE executada

add a note

User Contributed Notes

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