downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

preg_match_all> <preg_grep
Last updated: Wed, 22 Jul 2009

view this page in

preg_last_error

(PHP 5 >= 5.2.0)

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

Description

int preg_last_error ( void )

Returns the error code of the last PCRE regex execution.

Return Values

Returns one of the following constants (explained on their own page):



add a note add a note User Contributed Notes
preg_last_error
luky37
06-Jan-2009 08:44
the following function decodes this message for you:

<?php
function pcre_error_deocde() {
    switch (
preg_last_error()) {
        case
PREG_NO_ERROR:
            print
"pcre_error: PREG_NO_ERROR!\n";
            break;
        case
PREG_INTERNAL_ERROR:
            print
"pcre_error: PREG_INTERNAL_ERROR!\n";
            break;
        case
PREG_BACKTRACK_LIMIT_ERROR:
            print
"pcre_error: PREG_BACKTRACK_LIMIT_ERROR!\n";
            break;
        case
PREG_RECURSION_LIMIT_ERROR:
            print
"pcre_error: PREG_RECURSION_LIMIT_ERROR!\n";
            break;
        case
PREG_BAD_UTF8_ERROR:
            print
"pcre_error: PREG_BAD_UTF8_ERROR!\n";
            break;
        case
PREG_BAD_UTF8_OFFSET_ERROR:
            print
"pcre_error: PREG_BAD_UTF8_OFFSET_ERROR!\n";
            break;
    }
}
?>

preg_match_all> <preg_grep
Last updated: Wed, 22 Jul 2009
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites