Home
last modified time | relevance | path

Searched refs:preg_match (Results 51 – 75 of 244) sorted by relevance

12345678910

/PHP-8.0/ext/pcre/tests/
H A Dbug76512.phpt5 var_dump(preg_match('/\w/u', 'ä'));
H A Dbug67238.phpt6 echo preg_match('/a{1,3}b/U', 'ab');
H A Dbug80118.phpt5 preg_match('~[^\p{Han}\p{Z}]~u', ' ', $matches);
H A Dbug26927.phpt7 var_dump(preg_match("!{$str_quoted}!", $str), $str_quoted);
H A Dbug78338.phpt8 preg_match($string, $string);
H A Dbug61780.phpt5 preg_match('/(a)?([a-z]*)(\d*)/', '123', $matches, PREG_UNMATCHED_AS_NULL);
H A Dbug61780_1.phpt5 preg_match('/(4)?(2)?\d/', '23456', $matches, PREG_UNMATCHED_AS_NULL);
8 preg_match('/(4)?(2)?\d/', '23456', $matches, PREG_OFFSET_CAPTURE | PREG_UNMATCHED_AS_NULL);
H A Dbug75539.phpt12 var_dump(preg_match('/((?1)?z)/', ''));
H A Dbug75355.phpt8 var_dump(preg_match('~^(' . preg_quote('hello#world', '~') . ')\z~x', 'hello#world', $m));
H A Dbug47662.phpt13 var_dump(preg_match($regex, 'foobar'));
H A Dbug79846.phpt6 preg_match("/([a-z]+_[a-z]+_*[a-z]+)_?(\d+)?/", $item, $match);
H A Dcheck_jit_enabled.phpt16 var_dump(preg_match(",PCRE JIT Support .* enabled,", $info));
H A Dbug38600.phpt7 var_dump(preg_match('/(?<!\w)(0x[\p{N}]+[lL]?|[\p{Nd}]+(e[\p{Nd}]*)?[lLdDfF]?)(?!\w)/', $foo, $m));
H A Dbug41050.phpt11 if (preg_match($regex,$sql, $m)) echo 'matched';
H A Dbug81424a.phpt9 preg_match('/(?P<size>\d+)m|M/', "4M", $m),
/PHP-8.0/ext/oci8/tests/
H A Dconnect_without_oracle_home.phpt9 $ov = preg_match('/Compile-time ORACLE_HOME/', $phpinfo);
13 preg_match('/^([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)/', oci…
H A Dimp_res_get_none.phpt8 preg_match('/.*Release ([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]…
12 preg_match('/^[[:digit:]]+/', oci_client_version(), $matches);
H A Dconnect_without_oracle_home_11.phpt9 $ov = preg_match('/Compile-time ORACLE_HOME/', $phpinfo);
13 preg_match('/^([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)/', oci…
H A Derror_bind_3.phpt8 preg_match('/.*Release ([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]…
12 preg_match('/^[[:digit:]]+/', oci_client_version(), $matches);
H A Dimp_res_get_cancel.phpt8 preg_match('/.*Release ([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]…
12 preg_match('/^[[:digit:]]+/', oci_client_version(), $matches);
H A Dimp_res_get_exec.phpt8 preg_match('/.*Release ([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]…
12 preg_match('/^[[:digit:]]+/', oci_client_version(), $matches);
H A Dminfo.phpt11 $r = preg_match('/OCI8 Support .* enabled/', $v);
/PHP-8.0/tests/lang/
H A Dbug29944.phpt10 if (preg_match('/\d/', $bar)) return true;
/PHP-8.0/ext/gd/tests/
H A Dfunc.inc22 if (preg_match(',FreeType Version => (\d+\.\d+\.\d+),s', get_php_info(), $match)) {
33 if (preg_match(',libJPEG Version => ([a-z0-9]+),s', get_php_info(), $match)) {
44 if (preg_match(',libPNG Version => (\d+\.\d+\.\d+),s', get_php_info(), $match)) {
55 if (preg_match(',libXpm Version => (\d+),s', get_php_info(), $match)) {
/PHP-8.0/scripts/dev/
H A Dbless_tests.php10 if (!preg_match('/^(.*)\.phpt$/', $path, $matches)) {
30 if (!preg_match('/--EXPECT(F?)--(.*)$/s', $phpt, $matches)) {
99 return preg_match(formatToRegex($oldExpect), $new);
116 $hasWildcard = preg_match('/%[resSaAwidxfc]/', $out);

Completed in 28 milliseconds

12345678910