Home
last modified time | relevance | path

Searched refs:pattern (Results 76 – 100 of 238) sorted by relevance

12345678910

/PHP-5.5/ext/ereg/tests/
H A Dsplit_basic_001.phpt5 /* Prototype : proto array split(string pattern, string string [, int limit])
20 list($pattern,$string) = $re;
21 echo "\n--> Pattern: '$pattern'; match: '$string'\n";
22 var_dump(split($pattern, $string . ' |1| ' . $string . ' |2| ' . $string, 2));
H A Dspliti_basic_002.phpt5 /* Prototype : proto array spliti(string pattern, string string [, int limit])
20 list($pattern,$string) = $re;
21 echo "\n--> Pattern: '$pattern'; match: '$string'\n";
22 var_dump(spliti($pattern, $string . ' |1| ' . $string . ' |2| ' . $string));
H A Dsplit_basic_002.phpt5 /* Prototype : proto array split(string pattern, string string [, int limit])
20 list($pattern,$string) = $re;
21 echo "\n--> Pattern: '$pattern'; match: '$string'\n";
22 var_dump(split($pattern, $string . ' |1| ' . $string . ' |2| ' . $string));
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_types_zerofill.phpt13 function test_type(&$db, $offset, $sql_type, $value, $ret_value = NULL, $pattern = NULL) {
51 if (!is_null($pattern)) {
53 if (!preg_match($pattern, $row['label'])) {
54 printf("[%03d + 5] Value seems wrong, accepting pattern %s got %s, check manually\n",
55 $offset, $pattern, var_export($row['label'], true));
/PHP-5.5/ext/intl/msgformat/
H A Dmsgformat_class.c116 ZEND_ARG_INFO(0, pattern)
124 ZEND_ARG_INFO(0, pattern)
133 ZEND_ARG_INFO(0, pattern)
/PHP-5.5/ext/intl/tests/
H A Dmsgfmt_format_subpatterns.phpt20 $pattern=<<<_MSG_
49 $fmt = ut_msgfmt_create( 'en_US', $pattern );
56 $str_res .= dump( ut_msgfmt_format_message('en_US', $pattern, $arg) ) . "\n";
H A Dmsgfmt_format_subpatterns_named.phpt20 $pattern=<<<_MSG_
49 $fmt = ut_msgfmt_create( 'en_US', $pattern );
56 $str_res .= dump( ut_msgfmt_format_message('en_US', $pattern, $arg) ) . "\n";
/PHP-5.5/win32/
H A Dfnmatch.h52 PHPAPI int fnmatch(const char *pattern, const char *string, int flags);
/PHP-5.5/ext/standard/tests/file/
H A Dfnmatch_basic.phpt10 /* Prototype: bool fnmatch ( string $pattern, string $string [, int $flags] )
12 the given shell wildcard pattern.
H A Dglob_basic.phpt5 /* Prototype: array glob ( string $pattern [, int $flags] );
6 Description: Find pathnames matching a pattern
H A Dglob_error.phpt5 /* Prototype: array glob ( string $pattern [, int $flags] );
6 Description: Find pathnames matching a pattern
H A Dfnmatch_error.phpt10 /* Prototype: bool fnmatch ( string $pattern, string $string [, int $flags] )
12 the given shell wildcard pattern.
/PHP-5.5/ext/pcre/pcrelib/
H A Dpcredemo.c50 char *pattern; in main() local
89 pattern = argv[i]; in main()
100 pattern, /* the pattern */ in main()
H A DChangeLog118 offsets in the pattern.
248 pattern.
1283 command "pattern=`printf 'xxx\r\njkl'`" was run. The pattern is now taken
2274 5. The command line items --regex=pattern and --regexp=pattern were not
2275 recognized by pcregrep, which required --regex pattern or --regexp pattern
3718 pattern could run off the end of the subject. For example, the pattern
3749 Thus, in Perl, the pattern /\500/ actually matches \100 but the pattern
4391 compiled pattern.
4421 and 16-bit fields in a compiled pattern, to simulate a pattern that
4864 start of line for a non-DOTALL pattern) when a pattern started with (.*) and
[all …]
/PHP-5.5/ext/zip/
H A DTODO1 - add pattern support to extract or add files
/PHP-5.5/ext/mbstring/tests/
H A Dmb_ereg_variation3.phpt10 /* Prototype : int mb_ereg(string $pattern, string $string [, array $registers])
38 foreach($character_classes as $string => $pattern) {
44 var_dump(mb_ereg($pattern, $string, $regs));
H A Dmb_split_variation3.phpt10 /* Prototype : proto array mb_split(string pattern, string string [, int limit])
19 $pattern = '[a-z]';
90 // loop through each element of the array for pattern
95 var_dump( mb_split($pattern, $string, $input) );
H A Dmb_ereg_variation2.phpt10 /* Prototype : int mb_ereg(string $pattern, string $string [, array $registers])
22 $pattern = 'str';
99 var_dump( mb_ereg($pattern, $input, $regs) );
H A Dmb_ereg_variation5.phpt10 /* Prototype : int mb_ereg(string $pattern, string $string [, array $registers])
16 * Test mb_ereg with anchors (start and end of string) in $pattern
H A Dmb_ereg_variation7.phpt2 Test mb_ereg() function : usage variations - different regex features in $pattern
10 /* Prototype : int mb_ereg(string $pattern, string $string [, array $registers])
/PHP-5.5/sapi/cli/tests/
H A D006.phpt60 Parameter #0 [ <required> $pattern ]
70 Parameter #0 [ <required> $pattern ]
110 Parameter #0 [ <required> $pattern ]
/PHP-5.5/ext/mbstring/oniguruma/
H A Dregposix.c134 regcomp(regex_t* reg, const char* pattern, int posix_options) in regcomp() argument
153 ENC_STRING_LEN(OnigEncDefaultCharEncoding, pattern, len); in regcomp()
154 r = onig_new(PONIG_C(reg), (UChar* )pattern, (UChar* )(pattern + len), in regcomp()
/PHP-5.5/ext/intl/dateformat/
H A Ddateformat_format_object.cpp67 bool pattern = false; in PHP_FUNCTION() local
132 pattern = true; in PHP_FUNCTION()
177 if (pattern) { in PHP_FUNCTION()
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dgreplist4 pattern
/PHP-5.5/ext/pcre/tests/
H A Dpreg_match_basic_002.phpt5 /* Prototype : int preg_match ( string $pattern , string $subject [, array &$matches [, int $f…

Completed in 54 milliseconds

12345678910