Home
last modified time | relevance | path

Searched refs:z (Results 176 – 200 of 336) sorted by path

12345678910>>...14

/PHP-7.4/ext/pcre/tests/
H A Dpcre_count.phpt5 $regex = '/(([0-9a-z]+)-([0-9]+))-(([0-9]+)-([0-9]+))/';
13 $regex = '/([a-z]+)/';
H A Dpreg_filter.phpt7 $pattern = array('/\d/', '/[a-z]/', '/[1a]/');
H A Dpreg_grep_basic.phpt12 var_dump(preg_grep('@(/\w+\.*/*)+@', $array)); //finds / followed by one or more of a-z, A-Z and 0-…
H A Dpreg_grep_error1.phpt17 '/[a-zA-Z]/F', array('[a-z]', //Array of Regexes
H A Dpreg_match_all_error1.phpt17 '/[a-zA-Z]/F', array('[a-z]', //Array of Regexes
H A Dpreg_match_all_error3.phpt13 $regex = '/[a-z]/';
H A Dpreg_match_error1.phpt17 '/[a-zA-Z]/F', array('[a-z]', //Array of Regexes
H A Dpreg_quote_basic.phpt14 var_dump(preg_match('/^[tT]\w{6} - ' . preg_quote($string_before, '/') . ' [a-z]*\s*work$/', $strin…
H A Dpreg_replace_basic.phpt15 var_dump(preg_replace('<(^[a-z]\w+)@(\w+)\.(\w+)\.([a-z]{2,}$)>', '\\1 at \\2 dot \\3 dot \\4', 'jo…
H A Dpreg_replace_callback2.phpt11 var_dump(preg_replace_callback('/\w/', 'f', 'z'));
H A Dpreg_replace_callback_array2.phpt26 var_dump(preg_replace_callback_array(array('/\w' => 'f'), 'z'));
29 var_dump(preg_replace_callback_array(array('/\w/' => 'f', '/.*/' => 'f'), 'z'));
H A Dpreg_replace_callback_error1.phpt17 '/[a-zA-Z]/F', array('[a-z]', //Array of Regexes
H A Dpreg_replace_edit_basic.phpt29 var_dump(preg_replace('<(^[a-z]\w+)@(\w+)\.(\w+)\.([a-z]{2,}$)>',
H A Dpreg_replace_error1.phpt17 '/[a-zA-Z]/F', array('[a-z]', //Array of Regexes
H A Dpreg_split_error1.phpt17 '/[a-zA-Z]/F', array('[a-z]', //Array of Regexes
/PHP-7.4/ext/pdo_dblib/
H A Dconfig.m426 if test -z "$PDO_FREETDS_INSTALLATION_DIR"; then
/PHP-7.4/ext/pdo_dblib/tests/
H A Ddatetime_convert.phpt19 // assume default date format: %b %e %Y %I:%M:%S:%z%p
/PHP-7.4/ext/pdo_mysql/
H A Dconfig.m47 if test -z "$PHP_ZLIB_DIR"; then
98 PHP_ADD_LIBRARY_WITH_PATH(z, $PHP_ZLIB_DIR, PDO_MYSQL_SHARED_LIBADD)
106 PHP_ADD_LIBRARY(z,, PDO_MYSQL_SHARED_LIBADD)
/PHP-7.4/ext/pdo_mysql/tests/
H A Dpdo_mysql_attr_autocommit.phpt60 $db->query("INSERT INTO test(id, label) VALUES (100, 'z')");
H A Dpdo_mysql_attr_oracle_nulls.phpt27 …$stmt = $db->query("SELECT NULL AS z, '' AS a, ' ' AS b, TRIM(' ') as c, ' d' AS d, '" . chr(0) . …
31 …$stmt = $db->query("SELECT NULL AS z, '' AS a, ' ' AS b, TRIM(' ') as c, ' d' AS d, '" . chr(0) . …
46 …(false !== $db->exec("CREATE PROCEDURE p() BEGIN SELECT NULL as z, '' AS a, ' ' AS b, TRIM(' ') as…
52 "z" => NULL,
90 ["z"]=>
107 ["z"]=>
H A Dpdo_mysql_begintransaction.phpt62 $db->exec(sprintf("INSERT INTO test(id, label) VALUES (%d, 'z')", $row['id']));
201 string(1) "z"
H A Dpdo_mysql_commit.phpt40 $db->exec("INSERT INTO test(id, label) VALUES (100, 'z')");
49 if (!isset($rows[0]['label']) || ($rows[0]['label'] != 'z')) {
62 $db->exec("INSERT INTO test(id, label) VALUES (100, 'z')");
70 if (!isset($rows[0]['label']) || ($rows[0]['label'] != 'z')) {
H A Dpdo_mysql_last_insert_id.phpt94 $db->exec("INSERT INTO test(col1) VALUES ('z')");
H A Dpdo_mysql_rollback.phpt23 $db->query("INSERT INTO test(id, label) VALUES (100, 'z')");
36 $db->query("INSERT INTO test(id, label) VALUES (100, 'z')");
H A Dpdo_mysql_stmt_closecursor.phpt40 $stmt2->bindValue(1, "z");
52 if (!isset($row2['label']) || ('z' !== $row2['label']))
53 printf("Expecting array(id => 1, label => z) got %s\n", var_export($row2, true));

Completed in 38 milliseconds

12345678910>>...14