Home
last modified time | relevance | path

Searched refs:z (Results 201 – 225 of 365) sorted by path

12345678910>>...15

/PHP-5.4/ext/pcre/tests/
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_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-5.4/ext/pdo_dblib/
H A Dconfig.m428 if test -z "$PDO_FREETDS_INSTALLATION_DIR"; then
/PHP-5.4/ext/pdo_mysql/
H A Dconfig.m410 if test -z "$PHP_ZLIB_DIR"; then
100 PHP_ADD_LIBRARY_WITH_PATH(z, $PHP_ZLIB_DIR, PDO_MYSQL_SHARED_LIBADD)
108 PHP_ADD_LIBRARY(z,, PDO_MYSQL_SHARED_LIBADD)
/PHP-5.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 [%u|b%"z"]=>
107 [%u|b%"z"]=>
H A Dpdo_mysql_begintransaction.phpt62 $db->exec(sprintf("INSERT INTO test(id, label) VALUES (%d, 'z')", $row['id']));
201 %unicode|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));
H A Dpdo_mysql_stmt_getcolumnmeta.phpt201 test_meta($db, 400, 'CHAR(255)', str_repeat('z', 255), 'STRING', PDO::PARAM_STR);
204 test_meta($db, 430, 'VARCHAR(255)', str_repeat('z', 255), 'VAR_STRING', PDO::PARAM_STR);
H A Dpdo_mysql_types.phpt142 test_type($db, 400, 'CHAR(255)', str_repeat('z', 255));
145 test_type($db, 430, 'VARCHAR(255)', str_repeat('z', 255));
/PHP-5.4/ext/pdo_oci/
H A Dconfig.m413 if test -z "$PDO_OCI_VERSION"; then
59 if test "$PHP_PDO_OCI" = "yes" || test -z "$PHP_PDO_OCI"; then
67 if test -z "$PDO_OCI_DIR"; then
/PHP-5.4/ext/pdo_oci/tests/
H A Dpdo_oci_quote1.phpt22 $a = array(null, "", "a", "ab", "abc", "ab'cd", "a\b\n", "'", "''", "a'", "'z", "a''b", '"');
136 Unquoted : string(2) "'z"
137 Quoted : string(5) "'''z'"
142 string(2) "'z"

Completed in 59 milliseconds

12345678910>>...15