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: Sun, 25 Nov 2007

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

Beskrivelse

int preg_last_error ( void )

Returns the error code of the last PCRE regex execution.

Returneringsværdier

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 07: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: Sun, 25 Nov 2007
 
 
show source | credits | sitemap | contact | advertising | mirror sites