Easy Tutorial
❮ Func Filesystem Realpath Php Password_Get_Info ❯

PHP preg_last_error() Function

PHP Regular Expressions (PCRE)

The preg_last_error function is used to return the error code of the last PCRE regex execution.

Syntax

int preg_last_error ( void )

Example

Return the specified match in the array:

<?php
preg_match('/(?:\D+|<\d+>)*[!?]/', 'foobar foobar foobar');

if (preg_last_error() == PREG_BACKTRACK_LIMIT_ERROR) {
    print 'Backtrack limit was exhausted!';
}

?>

The execution result is as follows:

Backtrack limit was exhausted!

Return Values

For detailed parameter explanations, see: PHP Regular Expressions (PCRE)

PHP Regular Expressions (PCRE)

❮ Func Filesystem Realpath Php Password_Get_Info ❯