Home
last modified time | relevance | path

Searched refs:matches (Results 126 – 150 of 167) sorted by relevance

1234567

/PHP-7.3/ext/pcre/tests/
H A Dpreg_match_latin.phpt5 /* Prototype : int preg_match ( string $pattern , string $subject [, array &$matches [, int $f…
H A Dpreg_match_all_error1.phpt27 var_dump(preg_match_all($regex_value, $subject, $matches));
28 var_dump($matches);
H A Dpreg_match_all_error.phpt20 var_dump(preg_match_all($pattern, $subject, $matches, $flags, $offset, $extra_arg));
H A Dpreg_match_error.phpt20 var_dump(preg_match($pattern, $subject, $matches, $flags, $offset, $extra_arg));
/PHP-7.3/ext/oci8/tests/
H A Dconn_attr_2.phpt11 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
12 if (!(isset($matches[0]) && $matches[1] >= 10)) {
H A Dconn_attr.inc5 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
6 if ((isset($matches[1]) && $matches[1] >= 11)) {
H A Dbind_sqltnum_11g.phpt6 preg_match('/^[[:digit:]]+/', oci_client_version(), $matches);
7 if (!(isset($matches[0]) && $matches[0] <= 11)) {
H A Dbind_sqltnum.phpt6 preg_match('/^[[:digit:]]+/', oci_client_version(), $matches);
7 if (!(isset($matches[0]) && $matches[0] >= 12)) {
H A Dbind_char_1.phpt8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
9 if (!(isset($matches[0]) && $matches[1] >= 12)) {
H A Dbind_char_1_11gR1.phpt8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
9 if (!(isset($matches[0]) && $matches[1] < 12)) {
H A Dbind_char_3.phpt8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
9 if (!(isset($matches[0]) && $matches[1] >= 12)) {
H A Dbind_char_3_11gR1.phpt8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
9 if (!(isset($matches[0]) && $matches[1] < 12)) {
H A Dbind_char_4.phpt8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
9 if (!(isset($matches[0]) && $matches[1] >= 12)) {
/PHP-7.3/ext/mbstring/oniguruma/doc/
H A DSYNTAX.md270 `\W` always matches the opposite of whatever `\w` matches.
344 In single-line mode, `^` matches the start of the input buffer, and `$` matches
346 character is `\n`; and `$` matches if the following character is `\n`.
495 after matching: Like the normal greedy quantifier, it matches as much as
642 Somewhat like `\d` matches decimal digits, `\h` matches hexadecimal digits — that is,
645 `\H` matches the opposite of whatever `\h` matches.
692 Enables support for `\R`, the "general newline" shorthand, which matches
708 `\O` matches exactly one character, regardless of whether single-line or
718 Enables support for the `(?~r)` "absent operator" syntax, which matches
745 `\y` matches a cluster boundary, i.e., a zero-width position between
[all …]
/PHP-7.3/ext/standard/tests/http/
H A Dserver.inc71 if (preg_match('#^Content-Length\s*:\s*([[:digit:]]+)\s*$#i', $line, $matches)) {
72 $content_length = (int) $matches[1];
/PHP-7.3/ext/mbstring/tests/
H A Dmb_ereg2.phpt2 mb_ereg() returning matches
H A Dmb_ereg3.phpt2 mb_ereg() returning matches
H A Dmb_ereg_match_basic.phpt26 //will return true as pattern matches from start of string
/PHP-7.3/ext/spl/internal/
H A Dregexiterator.inc27 const ALL_MATCHES = 2; /**< Mode: Return all matches (if any) */
70 $matches = array();
78 return preg_match($this->regex, $subject, $matches, $this->preg_flags);
/PHP-7.3/ext/mysqli/tests/
H A Dmysqli_pconn_max_links.phpt80 if (!preg_match('@Active Persistent Links\s+=>\s+(\d+)@ismU', $phpinfo, $matches))
82 $num_plinks = $matches[1];
138 if (!preg_match('@Active Persistent Links\s+=>\s+(\d+)@ismU', $phpinfo, $matches))
143 $num_plinks_kill = $matches[1];
176 if (!preg_match('@Active Persistent Links\s+=>\s+(\d+)@ismU', $phpinfo, $matches))
179 $num_plinks = $matches[1];
/PHP-7.3/ext/spl/examples/
H A Dregexfindfile.inc32 /** @return whether the current filename matches the regular expression.
H A Dfindfile.inc48 /** @return whether the current file matches the given filename
/PHP-7.3/ext/pspell/tests/
H A D001.phpt24 $string .= "Ahh, matches!";
116 matches : true
/PHP-7.3/ext/openssl/tests/
H A Dsan_peer_matching.phpt2 Peer verification matches SAN names
/PHP-7.3/ext/mbstring/oniguruma/src/
H A Donigposix.h162 ONIG_EXTERN int regexec P_((regex_t* reg, const char* str, size_t nmatch, regmatch_t* matches, i…

Completed in 38 milliseconds

1234567