php man page for preg_last_error

Query: preg_last_error

OS: php

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

PREG_LAST_ERROR(3)							 1							PREG_LAST_ERROR(3)

preg_last_error - Returns the error code of the last PCRE regex execution

SYNOPSIS
int preg_last_error (void )
DESCRIPTION
Returns the error code of the last PCRE regex execution. Example #1 preg_last_error(3) example <?php preg_match('/(?:D+|<d+>)*[!?]/', 'foobar foobar foobar'); if (preg_last_error() == PREG_BACKTRACK_LIMIT_ERROR) { print 'Backtrack limit was exhausted!'; } ?> The above example will output: Backtrack limit was exhausted!
RETURN VALUES
Returns one of the following constants (explained on their own page): o PREG_NO_ERROR o PREG_INTERNAL_ERROR o PREG_BACKTRACK_LIMIT_ERROR (see also pcre.backtrack_limit) o PREG_RECURSION_LIMIT_ERROR (see also pcre.recursion_limit) o PREG_BAD_UTF8_ERROR o PREG_BAD_UTF8_OFFSET_ERROR (since PHP 5.3.0) PHP Documentation Group PREG_LAST_ERROR(3)
Related Man Pages
preg_replace_callback(3) - php
ini_get_all(3) - php
preg_filter(3) - php
split(3) - php
sql_regcase(3) - php
Similar Topics in the Unix Linux Community
User Guide: Posting in the Emergency Forum
Status of UNIX.COM Forum Transformation
Please Welcome Ravinder Singh to the Moderation Team
Denial Of Service Attack Update
Please Welcome Nicki Paul to the Moderator Team!