Searched refs:PREG_GREP_INVERT (Results 1 – 6 of 6) sorted by relevance
/PHP-7.1/ext/pcre/tests/ |
H A D | pcre.constants.phpt | 13 echo "PREG_GREP_INVERT= ", PREG_GREP_INVERT, "\n"; 29 PREG_GREP_INVERT= 1
|
H A D | grep.phpt | 8 var_dump(preg_grep('/^(\d|.\d)$/', $array, PREG_GREP_INVERT));
|
H A D | grep2.phpt | 13 var_dump(preg_grep('@^[a-z]+@', $array, PREG_GREP_INVERT));
|
H A D | preg_grep_basic.phpt | 15 var_dump(preg_grep('@^HTTP(.*?)\w{2,}$@i', $array, PREG_GREP_INVERT)); //same as first example but …
|
/PHP-7.1/sapi/cli/tests/ |
H A D | 006.phpt | 49 Constant [ integer PREG_GREP_INVERT ] { 1 }
|
/PHP-7.1/ext/pcre/ |
H A D | php_pcre.c | 43 #define PREG_GREP_INVERT (1<<0) macro 208 REGISTER_LONG_CONSTANT("PREG_GREP_INVERT", PREG_GREP_INVERT, CONST_CS | CONST_PERSISTENT); in PHP_MINIT_FUNCTION() 2081 invert = flags & PREG_GREP_INVERT ? 1 : 0; in php_pcre_grep_impl()
|
Completed in 17 milliseconds