Searched refs:regexp (Results 1 – 12 of 12) sorted by relevance
/PHP-7.0/ext/filter/tests/ |
H A D | 017.phpt | 8 var_dump(filter_var("data", FILTER_VALIDATE_REGEXP, array("options"=>array("regexp"=>'/.*/')))); 9 var_dump(filter_var("data", FILTER_VALIDATE_REGEXP, array("options"=>array("regexp"=>'/^b(.*)/')))); 10 var_dump(filter_var("data", FILTER_VALIDATE_REGEXP, array("options"=>array("regexp"=>'/^d(.*)/')))); 11 var_dump(filter_var("data", FILTER_VALIDATE_REGEXP, array("options"=>array("regexp"=>'/blah/')))); 12 var_dump(filter_var("data", FILTER_VALIDATE_REGEXP, array("options"=>array("regexp"=>'/\[/')))); 24 Warning: filter_var(): 'regexp' option missing in %s on line %d
|
H A D | 033_run.inc | 26 …k=>$d) $result[$k] = filter_var($d,filter_id($filter),array("options"=>array("regexp"=>'/^O.*/')));
|
/PHP-7.0/ext/opcache/ |
H A D | zend_accelerator_blacklist.c | 79 char regexp[12*1024], *p, *end, *c, *backtrack = NULL; in zend_accel_blacklist_update_regexp() local 88 regexp[0] = '^'; in zend_accel_blacklist_update_regexp() 89 regexp[1] = '('; in zend_accel_blacklist_update_regexp() 90 p = regexp + 2; in zend_accel_blacklist_update_regexp() 91 end = regexp + sizeof(regexp) - sizeof("[^\\\\]*)\0"); in zend_accel_blacklist_update_regexp() 180 …if ((it->re = pcre_compile(regexp, PCRE_NO_AUTO_CAPTURE, &pcre_error, &pcre_error_offset, 0)) == N… in zend_accel_blacklist_update_regexp() 186 p = regexp + 2; in zend_accel_blacklist_update_regexp()
|
/PHP-7.0/ext/mbstring/tests/ |
H A D | bug72710.phpt | 2 Bug #72710 (`mb_ereg` causes buffer overflow on regexp compile error)
|
/PHP-7.0/ext/filter/ |
H A D | logical_filters.c | 429 zend_string *regexp; in php_filter_validate_regexp() local 438 FETCH_STR_OPTION(regexp, "regexp"); in php_filter_validate_regexp() 445 re = pcre_get_compiled_regex(regexp, &pcre_extra, &preg_options); in php_filter_validate_regexp() 601 …const char regexp[] = "/^(?!(?:(?:\\x22?\\x5C[\\x00-\\x7E]\\x22?)|(?:\\x22?[^\\x5C\\x22]\\x22?)){2… in php_filter_validate_email() local 615 sregexp = zend_string_init(regexp, sizeof(regexp) - 1, 0); in php_filter_validate_email()
|
/PHP-7.0/ext/mbstring/oniguruma/doc/ |
H A D | FAQ | 29 new regexp objects or re-compiling objects or freeing objects,
|
/PHP-7.0/ext/ldap/tests/ |
H A D | README | 103 authz-regexp
|
/PHP-7.0/ext/zip/ |
H A D | php_zip.c | 598 int php_zip_pcre(zend_string *regexp, char *path, int path_len, zval *return_value) /* {{{ */ in php_zip_pcre() argument 638 re = pcre_get_compiled_regex(regexp, &pcre_extra, &preg_options); in php_zip_pcre()
|
/PHP-7.0/ext/pcre/pcrelib/ |
H A D | README | 58 https://github.com/YasserAsmi/regexp, which aims to be simple and similar in
|
H A D | ChangeLog | 2274 5. The command line items --regex=pattern and --regexp=pattern were not 2275 recognized by pcregrep, which required --regex pattern or --regexp pattern 4226 instead of two lines, one with "regex" and the other with "regexp"
|
/PHP-7.0/build/ |
H A D | libtool.m4 | 4606 opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp 5361 # exclude_expsyms can be an extended regexp of symbols to exclude
|
/PHP-7.0/ |
H A D | NEWS | 1284 . Fixed bug #72710 (`mb_ereg` causes buffer overflow on regexp compile error).
|
Completed in 52 milliseconds