/PHP-5.4/ext/pcre/pcrelib/testdata/ |
H A D | testoutput8 | 25 No match 27 No match 29 No match 95 No match 97 No match 99 No match 107 No match 109 No match 115 No match 117 No match [all …]
|
H A D | testoutput5 | 112 No match 114 No match 116 No match 118 No match 141 No match 163 No match 165 No match 253 No match 264 No match 266 No match [all …]
|
H A D | testoutput1 | 11 No match 15 No match 93 No match 95 No match 97 No match 99 No match 101 No match 103 No match 105 No match 115 No match [all …]
|
H A D | testoutput10 | 11 No match 13 No match 25 No match 37 No match 45 No match 55 No match 81 No match 89 No match 91 No match 105 No match [all …]
|
H A D | testoutput6 | 12 No match 14 No match 22 No match 30 No match 38 No match 46 No match 52 No match 54 No match 62 No match 70 No match [all …]
|
H A D | testoutput4 | 15 No match 17 No match 30 No match 32 No match 34 No match 107 No match 109 No match 111 No match 130 No match 132 No match [all …]
|
H A D | testoutput3 | 12 No match 14 No match 22 No match 24 No match 34 No match 40 No match 42 No match 48 No match 50 No match 54 No match [all …]
|
H A D | testoutput2 | 32 No match 34 No match 36 No match 48 No match 50 No match 52 No match 86 No match 88 No match 323 No match 325 No match [all …]
|
H A D | testoutput7 | 96 No match 98 No match 118 No match 120 No match 122 No match 154 No match 156 No match 158 No match 160 No match 291 No match [all …]
|
H A D | testoutput9 | 25 No match 27 No match 37 No match 39 No match 45 No match 47 No match 49 No match 51 No match 61 No match 63 No match [all …]
|
/PHP-5.4/ext/gd/tests/ |
H A D | func.inc | 22 if (preg_match(',FreeType Version => (\d+\.\d+\.\d+),s', get_php_info(), $match)) { 23 $version = $match[1]; 33 if (preg_match(',libJPEG Version => ([a-z0-9]+),s', get_php_info(), $match)) { 34 $version = $match[1]; 44 if (preg_match(',libPNG Version => (\d+\.\d+\.\d+),s', get_php_info(), $match)) { 45 $version = $match[1]; 55 if (preg_match(',libXpm Version => (\d+),s', get_php_info(), $match)) { 56 $version = $match[1];
|
/PHP-5.4/ext/pcre/tests/ |
H A D | match_flags.phpt | 6 var_dump(preg_match_all('/(.)x/', 'zxax', $match, PREG_PATTERN_ORDER)); 7 var_dump($match); 9 var_dump(preg_match_all('/(.)x/', 'zxyx', $match, PREG_SET_ORDER)); 10 var_dump($match); 12 var_dump(preg_match_all('/(.)x/', 'zxyx', $match, PREG_OFFSET_CAPTURE)); 13 var_dump($match); 15 var_dump(preg_match_all('/(.)x/', 'zxyx', $match, PREG_SET_ORDER | PREG_OFFSET_CAPTURE)); 16 var_dump($match);
|
H A D | match_flags3.phpt | 6 var_dump(preg_match('', '', $match, 0xfff)); 8 var_dump(preg_match('/\d+/', '123 456 789 012', $match, 0, -8)); 9 var_dump($match); 11 var_dump(preg_match('/\d+/', '123 456 789 012', $match, 0, -500)); 12 var_dump($match); 14 var_dump(preg_match_all('/\d+/', '123 456 789 012', $match, 0, -8)); 15 var_dump($match);
|
H A D | match_flags2.phpt | 6 var_dump(preg_match('/x(.)/', 'fjszxax', $match, PREG_OFFSET_CAPTURE)); 7 var_dump($match); 9 var_dump(preg_match('/(.)x/', 'fjszxax', $match, PREG_OFFSET_CAPTURE, 4)); 10 var_dump($match); 12 var_dump(preg_match('/(?P<capt1>.)(x)(?P<letsmix>\S+)/', 'fjszxax', $match, PREG_OFFSET_CAPTURE)); 13 var_dump($match);
|
H A D | bug52971.phpt | 11 preg_match_all($pattern, $message, $match, PREG_OFFSET_CAPTURE); 12 var_dump($match); 15 preg_match_all($pattern, $message, $match, PREG_OFFSET_CAPTURE); 16 var_dump($match);
|
H A D | bug37911.phpt | 6 function callback($match) 8 var_dump($match); 9 return $match[1].'/'.strlen($match['name']);
|
H A D | bug40909.phpt | 10 $match = array(); 12 if ($result =preg_match_all($pattern, $context, $match)) 16 var_dump($match);
|
/PHP-5.4/ext/ereg/tests/ |
H A D | split_basic_001.phpt | 21 echo "\n--> Pattern: '$pattern'; match: '$string'\n"; 30 --> Pattern: '..(a|b|c)(a|b|c)..'; match: '--- ab ---' 40 --> Pattern: '()'; match: '' 47 --> Pattern: '()'; match: 'abcdef' 54 --> Pattern: '[x]|[^x]'; match: 'abcdef' 84 --> Pattern: '\a'; match: 'a' 94 --> Pattern: '[0-9][^0-9]'; match: '2a' 112 --> Pattern: '^[[:digit:]]{5}'; match: '0123456789' 122 --> Pattern: '[[:digit:]]{5}$'; match: '0123456789' 132 --> Pattern: '[[:blank:]]{1,10}'; match: ' [all …]
|
H A D | spliti_basic_001.phpt | 21 echo "\n--> Pattern: '$pattern'; match: '$string'\n"; 30 --> Pattern: '..(a|b|c)(a|b|c)..'; match: '--- ab ---' 40 --> Pattern: '()'; match: '' 47 --> Pattern: '()'; match: 'abcdef' 54 --> Pattern: '[x]|[^x]'; match: 'abcdef' 84 --> Pattern: '\a'; match: 'a' 94 --> Pattern: '[0-9][^0-9]'; match: '2a' 112 --> Pattern: '^[[:digit:]]{5}'; match: '0123456789' 122 --> Pattern: '[[:digit:]]{5}$'; match: '0123456789' 132 --> Pattern: '[[:blank:]]{1,10}'; match: ' [all …]
|
H A D | split_basic_002.phpt | 21 echo "\n--> Pattern: '$pattern'; match: '$string'\n"; 30 --> Pattern: '..(a|b|c)(a|b|c)..'; match: '--- ab ---' 44 --> Pattern: '()'; match: '' 51 --> Pattern: '()'; match: 'abcdef' 58 --> Pattern: '[x]|[^x]'; match: 'abcdef' 150 --> Pattern: '\a'; match: 'a' 164 --> Pattern: '[0-9][^0-9]'; match: '2a' 190 --> Pattern: '^[[:digit:]]{5}'; match: '0123456789' 202 --> Pattern: '[[:digit:]]{5}$'; match: '0123456789' 212 --> Pattern: '[[:blank:]]{1,10}'; match: ' [all …]
|
H A D | spliti_basic_002.phpt | 21 echo "\n--> Pattern: '$pattern'; match: '$string'\n"; 30 --> Pattern: '..(a|b|c)(a|b|c)..'; match: '--- ab ---' 44 --> Pattern: '()'; match: '' 51 --> Pattern: '()'; match: 'abcdef' 58 --> Pattern: '[x]|[^x]'; match: 'abcdef' 150 --> Pattern: '\a'; match: 'a' 164 --> Pattern: '[0-9][^0-9]'; match: '2a' 190 --> Pattern: '^[[:digit:]]{5}'; match: '0123456789' 202 --> Pattern: '[[:digit:]]{5}$'; match: '0123456789' 212 --> Pattern: '[[:blank:]]{1,10}'; match: ' [all …]
|
H A D | ereg_replace_basic_001.phpt | 22 list($pattern, $match) = $re; 23 echo "--> Pattern: '$pattern'; match: '$match'\n"; 24 var_dump(ereg_replace($pattern, $replacement, $match . ' this contains some matches ' . $match)); 31 --> Pattern: '..(a|b|c)(a|b|c)..'; match: '--- ab ---' 35 --> Pattern: '()'; match: '' 39 --> Pattern: '()'; match: 'abcdef' 43 --> Pattern: '[x]|[^x]'; match: 'abcdef' 55 --> Pattern: '\a'; match: 'a' 59 --> Pattern: '[0-9][^0-9]'; match: '2a' 75 --> Pattern: '[[:blank:]]{1,10}'; match: ' [all …]
|
/PHP-5.4/ext/mbstring/libmbfl/filters/ |
H A D | mbfilter_sjis_mobile.c | 255 match = 1; in mbfilter_conv_map_tbl() 259 return match; in mbfilter_conv_map_tbl() 270 match = 1; in mbfilter_conv_r_map_tbl() 274 return match; in mbfilter_conv_r_map_tbl() 415 match = 1; in mbfilter_unicode2sjis_emoji_docomo() 418 match = 1; in mbfilter_unicode2sjis_emoji_docomo() 421 match = 1; in mbfilter_unicode2sjis_emoji_docomo() 442 match = 1; in mbfilter_unicode2sjis_emoji_docomo() 448 match = 1; in mbfilter_unicode2sjis_emoji_docomo() 454 match = 1; in mbfilter_unicode2sjis_emoji_docomo() [all …]
|
/PHP-5.4/win32/build/ |
H A D | projectgen.js | 11 if (core.match(arr[i])) { 46 if (arr[i].match('alloca.c') || 48 arr[i].match(/flock\.(c|h)/) || 83 if (munged.match(/[A-Z]{4}/)){ 104 if (fname.match(/\.(ico|rc)/)) { 128 if (type.match("Parsers")) { 317 if (ext.match("Zend")) { 327 if (address.match("sapi")) { 487 arr = config.match(sources); 542 if (!ext.match("php5")) { [all …]
|
/PHP-5.4/ext/ereg/regex/ |
H A D | engine.ih | 8 static unsigned char *dissect(register struct match *m, unsigned char *start, unsigned char *stop, … 9 static unsigned char *backref(register struct match *m, unsigned char *start, unsigned char *stop, … 10 static unsigned char *fast(register struct match *m, unsigned char *start, unsigned char *stop, sop… 11 static unsigned char *slow(register struct match *m, unsigned char *start, unsigned char *stop, sop… 23 static void print(struct match *m, unsigned char *caption, states st, int ch, FILE *d); 26 static void at(struct match *m, unsigned char *title, unsigned char *start, unsigned char *stop, so…
|