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 executionSYNOPSISint preg_last_error (void )DESCRIPTIONReturns 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 VALUESReturns 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 |
---|
ereg(3) - php |
preg_match(3) - php |
ini_get_all(3) - php |
preg_match_all(3) - php |
split(3) - php |
Similar Topics in the Unix Linux Community |
---|
Forum Video Tutorial: How to Use Code Tags |
Coming Soon: Upgrade Forum Software (Dec 31 - Jan 1) |
Status of UNIX.COM Forum Transformation |
Please Welcome Nicki Paul to the Moderator Team! |