Searched refs:PREG_SET_ORDER (Results 1 – 11 of 11) sorted by relevance
/PHP-5.3/ext/pcre/tests/ |
H A D | match_flags.phpt | 9 var_dump(preg_match_all('/(.)x/', 'zxyx', $match, PREG_SET_ORDER)); 15 var_dump(preg_match_all('/(.)x/', 'zxyx', $match, PREG_SET_ORDER | PREG_OFFSET_CAPTURE));
|
H A D | 004.phpt | 6 …*\w*\s*\])?\s*(?:=[^,;]+)?)*)\s*;/S', 'unsigned int xpto = 124; short a, b;', $m, PREG_SET_ORDER)); 9 …?:\([^)]+\))?(&?)([\w>.()-]+(?:\[\w+\])?)\s*,?((?:\)*\s*=)?)/S', '&a, b, &c', $m, PREG_SET_ORDER)); 12 …*([^{;]*)/S', 'zend_parse_parameters( 0, "addd|s/", a, b, &c);', $m, PREG_SET_ORDER | PREG_OFFSET_…
|
H A D | bug27011.phpt | 6 …eg_match_all('|(\w+)://([^\s"<]*[\w+#?/&=])|', "This is a text string", $matches, PREG_SET_ORDER));
|
H A D | 003.phpt | 6 foreach (array(PREG_PATTERN_ORDER, PREG_SET_ORDER) as $flag) {
|
H A D | preg_match_all_basic.phpt | 12 var_dump(preg_match_all('/[tT]his is a(.*?)\./', $string, $match2, PREG_SET_ORDER)); //finds "This …
|
H A D | preg_match_all_edit_basic.phpt | 16 var_dump(preg_match_all('/[tT]his is a(.*?)\./', $string, $match2, PREG_SET_ORDER)); //fin…
|
H A D | 005.phpt | 74 var_dump(preg_match_all($gcc_regex, $sampledata, $m, PREG_SET_ORDER));
|
/PHP-5.3/scripts/dev/ |
H A D | check_parameters.php | 116 …[^,;]+)?((?:\s*,\s*\**\s*\w+(?:\[\s*\w*\s*\])?\s*(?:=[^,;]+)?)*)\s*;/S', $txt, $m, PREG_SET_ORDER); 125 preg_match_all('/(\**)\s*(\w+(?:\[\s*\w*\s*\])?)\s*(=?)/S', $x[6], $y, PREG_SET_ORDER); 169 …_all('/(?:\([^)]+\))?(&?)([\w>.()-]+(?:\[\w+\])?)\s*,?((?:\)*\s*=)?)/S', $str, $m, PREG_SET_ORDER); 203 …]+,[^,]+|\s*\([^,]+),\s*"([^"]*)"\s*,\s*([^{;]*)/S', $txt, $matches, PREG_SET_ORDER | PREG_OFFSET_…
|
/PHP-5.3/sapi/cli/tests/ |
H A D | 006.phpt | 41 Constant [ integer PREG_SET_ORDER ] { 2 }
|
/PHP-5.3/ext/pcre/ |
H A D | php_pcre.c | 33 #define PREG_SET_ORDER 2 macro 141 REGISTER_LONG_CONSTANT("PREG_SET_ORDER", PREG_SET_ORDER, CONST_CS | CONST_PERSISTENT); in PHP_MINIT_FUNCTION() 573 if ((global && (subpats_order < PREG_PATTERN_ORDER || subpats_order > PREG_SET_ORDER)) || in php_pcre_match_impl()
|
/PHP-5.3/Zend/ |
H A D | zend_vm_gen.php | 440 …if ($spec && preg_match_all('/^\s*zend_free_op\s+[^;]+;\s*$/me', $code, $matches, PREG_SET_ORDER))…
|
Completed in 57 milliseconds