Home
last modified time | relevance | path

Searched refs:pattern (Results 126 – 150 of 238) sorted by relevance

12345678910

/PHP-5.5/ext/pcre/tests/
H A Dpreg_replace2.phpt25 Warning: preg_replace(): Parameter mismatch, pattern is a string while replacement is an array in %…
H A Dpreg_split_error2.phpt6 * proto array preg_split(string pattern, string subject [, int limit [, int flags]])
/PHP-5.5/ext/mbstring/tests/
H A Dmb_ereg1.phpt33 Warning: mb_ereg(): empty pattern in %s on line %d
H A Dmb_ereg_variation6.phpt10 /* Prototype : int mb_ereg(string $pattern, string $string [, array $registers])
16 * Test how mb_ereg() matches special characters for $pattern
/PHP-5.5/ext/ereg/tests/
H A Deregi_variation_002.phpt5 /* Prototype : proto int eregi(string pattern, string string [, array registers])
19 $pattern = '1';
77 var_dump( eregi($pattern, $value, $registers) );
H A Dspliti_variation_002.phpt5 /* Prototype : proto array spliti(string pattern, string string [, int limit])
19 $pattern = 'r|j|E';
77 var_dump( spliti($pattern, $value, $limit) );
H A Dereg_replace_variation_003.phpt5 /* Prototype : proto string ereg_replace(string pattern, string replacement, string string)
19 $pattern = '1';
77 var_dump( ereg_replace($pattern, $replacement, $value) );
H A Dereg_variation_002.phpt5 /* Prototype : proto int ereg(string pattern, string string [, array registers])
19 $pattern = '1';
77 var_dump( ereg($pattern, $value, $registers) );
H A Deregi_replace_variation_003.phpt5 /* Prototype : proto string eregi_replace(string pattern, string replacement, string string)
19 $pattern = '1';
77 var_dump( eregi_replace($pattern, $replacement, $value) );
H A Dsplit_variation_002.phpt5 /* Prototype : proto array split(string pattern, string string [, int limit])
19 $pattern = 'r|j|E';
77 var_dump( split($pattern, $value, $limit) );
H A Deregi_replace_basic.phpt6 /* Prototype : proto string eregi_replace(string pattern, string replacement, string string)
H A Dsplit_variation_003.phpt5 /* Prototype : proto array split(string pattern, string string [, int limit])
21 $pattern = b'[[:space:]]';
76 var_dump( split($pattern, $string, $value) );
H A Dspliti_variation_003.phpt5 /* Prototype : proto array spliti(string pattern, string string [, int limit])
21 $pattern = b'[[:space:]]';
76 var_dump( spliti($pattern, $string, $value) );
H A Dspliti_basic_004.phpt5 /* Prototype : proto array spliti(string pattern, string string [, int limit])
H A Deregi_basic.phpt5 /* Prototype : proto int eregi(string pattern, string string [, array registers])
H A Deregi_replace_basic_002.phpt5 /* Prototype : proto string eregi_replace(string pattern, string replacement, string string)
H A Dspliti_basic_003.phpt5 /* Prototype : proto array spliti(string pattern, string string [, int limit])
H A Deregi_basic_004.phpt5 /* Prototype : proto int eregi(string pattern, string string [, array registers])
H A Dereg_replace_basic_002.phpt5 /* Prototype : proto string ereg_replace(string pattern, string replacement, string string)
/PHP-5.5/ext/pcre/pcrelib/
H A DHACKING22 the pattern was all used up, all remaining states were possible matches, and
24 not necessarily maximize the individual wild portions of the pattern, as is
37 matches individual wild portions of the pattern. This is an "NFA algorithm" in
47 in the pattern, to save on compiling time. However, because of the greater
49 first pass through the pattern is helpful for other reasons.
94 is doing a full analysis of the pattern. My hope was that this would not be a
111 just-in-time (JIT) support, and studying a compiled pattern with JIT is
147 The compiled form of a pattern is a vector of unsigned units (bytes in 8-bit
170 OP_END end of pattern
207 This ends the assertion, not the entire pattern match.
[all …]
/PHP-5.5/ext/xml/tests/
H A Dbug35447.phpt17 type (literal|pattern|sub) "literal"
/PHP-5.5/ext/intl/formatter/
H A Dformatter_class.c145 ZEND_ARG_INFO(0, pattern)
155 ZEND_ARG_INFO(0, pattern)
/PHP-5.5/ext/date/tests/
H A Dbug41964.phpt2 Bug #41964 (strtotime returns a timestamp for non-time string of pattern '(A|a) .+')
/PHP-5.5/ext/intl/dateformat/
H A Ddateformat_class.c146 ZEND_ARG_INFO(0, pattern)
163 ZEND_ARG_INFO(0, pattern)
/PHP-5.5/ext/standard/tests/file/
H A Dfnmatch_variation.phpt10 /* Prototype: bool fnmatch ( string $pattern, string $string [, int $flags] )
12 the given shell wildcard pattern.
18 /* avoid using \, it breaks the pattern */
77 function match( $pattern, $string ) {
78 for( $i = 0; $i<count($pattern); $i++ ) {
81 var_dump( fnmatch($pattern[$i], $string[$j]) );

Completed in 24 milliseconds

12345678910