Home
last modified time | relevance | path

Searched refs:tmp (Results 126 – 150 of 1109) sorted by relevance

12345678910>>...45

/PHP-5.3/ext/standard/tests/file/
H A Drmdir_variation3-win32.phpt20 $workDir = "rmdirVar3.tmp";
77 -- removing rmdirVar3.tmp\aSubDir --
79 -- removing .\rmdirVar3.tmp\aSubDir --
81 -- removing rmdirVar3.tmp\..\rmdirVar3.tmp\aSubDir --
89 -- removing %s\rmdirVar3.tmp\aSubDir --
91 -- removing %s\.\rmdirVar3.tmp\aSubDir --
93 -- removing %s\rmdirVar3.tmp\..\rmdirVar3.tmp\aSubDir --
98 -- removing rmdirVar3.tmp\aSubDir\ --
100 -- removing %s\rmdirVar3.tmp\aSubDir\ --
102 -- removing rmdirVar3.tmp\\aSubDir --
[all …]
H A Dfilegroup_variation3.phpt18 $file_handle = fopen($dir_name."/filegroup_variation3.tmp", "w");
22 "/filegroup_variation3/filegroup_variation3.tmp",
25 "/filegroup_variation3/filegroup_variation3.tmp/",
28 "/filegroup_variation3//filegroup_variation3.tmp",
29 "//filegroup_variation3//filegroup_variation3.tmp",
30 "/filegroup_variation3/*.tmp",
31 "filegroup_variation3/filegroup*.tmp",
34 "/filegroup_variation3/filegroup_variation3.tmp".chr(0),
35 "/filegroup_variation3/filegroup_variation3.tmp\0"
53 unlink($dir_name."/filegroup_variation3.tmp");
[all …]
H A Dfileinode_variation3.phpt19 $file_handle = fopen($dir_name."/fileinode_variation3.tmp", "w");
23 "/fileinode_variation3/fileinode_variation3.tmp",
26 "/fileinode_variation3/fileinode_variation3.tmp/",
29 "/fileinode_variation3//fileinode_variation3.tmp",
30 "//fileinode_variation3//fileinode_variation3.tmp",
31 "/fileinode_variation3/*.tmp",
32 "fileinode_variation3/fileinode*.tmp",
35 "/fileinode_variation3/fileinode_variation3.tmp".chr(0),
36 "/fileinode_variation3/fileinode_variation3.tmp\0"
54 unlink($dir_name."/fileinode_variation3.tmp");
[all …]
H A Dfileperms_variation3.phpt18 $file_handle = fopen($dir_name."/fileperms_variation3.tmp", "w");
22 "/fileperms_variation3/fileperms_variation3.tmp",
25 "/fileperms_variation3/fileperms_variation3.tmp/",
28 "/fileperms_variation3//fileperms_variation3.tmp",
29 "//fileperms_variation3//fileperms_variation3.tmp",
30 "/fileperms_variation3/*.tmp",
31 "fileperms_variation3/fileperms*.tmp",
34 "/fileperms_variation3/fileperms_variation3.tmp".chr(0),
35 "/fileperms_variation3/fileperms_variation3.tmp\0"
53 unlink($dir_name."/fileperms_variation3.tmp");
[all …]
H A Dfileowner_variation1.phpt20 fclose( fopen($file_path."/fileowner_variation1.tmp", "w") );
24 symlink($file_path."/fileowner_variation1.tmp", $file_path."/fileowner_variation1_symlink.tmp");
25 var_dump( fileowner($file_path."/fileowner_variation1_symlink.tmp") ); //expected true
29 link($file_path."/fileowner_variation1.tmp", $file_path."/fileowner_variation1_link.tmp");
30 var_dump( fileowner($file_path."/fileowner_variation1_link.tmp") ); // expected: true
38 unlink($file_path."/fileowner_variation1_symlink.tmp");
39 unlink($file_path."/fileowner_variation1_link.tmp");
40 unlink($file_path."/fileowner_variation1.tmp");
H A Dmkdir_variation5.phpt20 $workDir = "mkdirVar5.tmp";
69 -- creating mkdirVar5.tmp/aSubDir --
71 -- creating ./mkdirVar5.tmp/aSubDir --
73 -- creating mkdirVar5.tmp/../mkdirVar5.tmp/aSubDir --
81 -- creating %s/mkdirVar5.tmp/aSubDir --
83 -- creating %s/./mkdirVar5.tmp/aSubDir --
85 -- creating %s/mkdirVar5.tmp/../mkdirVar5.tmp/aSubDir --
90 -- creating mkdirVar5.tmp/aSubDir/ --
92 -- creating %s/mkdirVar5.tmp/aSubDir/ --
94 -- creating mkdirVar5.tmp//aSubDir --
[all …]
H A Dmkdir_variation5-win32.phpt20 $workDir = "mkdirVar5.tmp";
74 -- creating mkdirVar5.tmp\aSubDir --
76 -- creating .\mkdirVar5.tmp\aSubDir --
78 -- creating mkdirVar5.tmp\..\mkdirVar5.tmp\aSubDir --
86 -- creating %s\mkdirVar5.tmp\aSubDir --
88 -- creating %s\.\mkdirVar5.tmp\aSubDir --
90 -- creating %s\mkdirVar5.tmp\..\mkdirVar5.tmp\aSubDir --
95 -- creating mkdirVar5.tmp\aSubDir\ --
97 -- creating %s\mkdirVar5.tmp\aSubDir\ --
99 -- creating mkdirVar5.tmp\\aSubDir --
[all …]
H A Dfileowner_variation3.phpt19 $file_handle = fopen($dir_name."/fileowner_variation3.tmp", "w");
23 "/fileowner_variation3/fileowner_variation3.tmp",
26 "/fileowner_variation3/fileowner_variation3.tmp/",
29 "/fileowner_variation3//fileowner_variation3.tmp",
30 "//fileowner_variation3//fileowner_variation3.tmp",
31 "/fileowner_variation3/*.tmp",
32 "fileowner_variation3/fileowner*.tmp",
35 "/fileowner_variation3/fileowner_variation3.tmp".chr(0),
36 "/fileowner_variation3/fileowner_variation3.tmp\0"
54 unlink($dir_name."/fileowner_variation3.tmp");
[all …]
/PHP-5.3/ext/mysqli/tests/
H A Dmysqli_num_rows.phpt13 $tmp = NULL;
16 if (!is_null($tmp = @mysqli_num_rows()))
17 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
19 if (!is_null($tmp = @mysqli_num_rows($link)))
20 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
31 if ($expected !== ($tmp = mysqli_num_rows($res)))
34 gettype($tmp), $tmp);
38 if ($test_free && (NULL !== ($tmp = mysqli_num_rows($res))))
39 printf("[%03d] Expecting NULL, got %s/%s\n", $offset + 2, gettype($tmp), $tmp);
64 if (0 !== ($tmp = mysqli_num_rows($res)))
[all …]
H A Dmysqli_connect_error.phpt13 $tmp = NULL;
17 if (!is_null($tmp = @mysqli_connect_error($link)))
18 printf("[001] Expecting NULL/NULL, got %s/%s\n", gettype($tmp), $tmp);
24 if (NULL !== ($tmp = mysqli_connect_error()))
25 printf("[003] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
33 if ('' === ($tmp = mysqli_connect_error()))
34 printf("[004] Expecting string/'', got %s/%s\n", gettype($tmp), $tmp);
H A Dmysqli_connect_errno.phpt13 $tmp = NULL;
17 if (0 !== ($tmp = @mysqli_connect_errno($link)))
18 printf("[001] Expecting integer/0, got %s/%s\n", gettype($tmp), $tmp);
24 if (0 !== ($tmp = mysqli_connect_errno()))
25 printf("[003] Expecting integer/0, got %s/%s\n", gettype($tmp), $tmp);
34 if (0 === ($tmp = mysqli_connect_errno()))
35 printf("[005] Expecting integer/any non-zero, got %s/%s\n", gettype($tmp), $tmp);
H A Dmysqli_errno.phpt13 $tmp = NULL;
16 if (!is_null($tmp = @mysqli_errno()))
17 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
19 if (!is_null($tmp = @mysqli_errno($link)))
20 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
37 if (($tmp = mysqli_errno($link)) == 0)
38 printf("[005] Expecting int/any non zero got %s/%s\n", gettype($tmp), $tmp);
H A Dmysqli_stmt_reset.phpt19 $tmp = NULL;
22 if (!is_null($tmp = @mysqli_stmt_reset()))
23 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
25 if (!is_null($tmp = @mysqli_stmt_reset($link)))
26 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
33 if (NULL !== ($tmp = mysqli_stmt_reset($stmt)))
34 printf("[004] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
38 gettype($tmp), $tmp, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
40 if (true !== ($tmp = mysqli_stmt_reset($stmt)))
41 printf("[006] Expecting boolean/true, got %s/%s\n", gettype($tmp), $tmp);
[all …]
H A Dmysqli_fetch_field_direct_oo.phpt13 $tmp = NULL;
18 if (!is_null($tmp = @$res->fetch_field_direct()))
19 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
31 if (!is_null($tmp = @$res->fetch_field_direct()))
32 printf("[004] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
34 if (!is_null($tmp = @$res->fetch_field_direct($link)))
35 printf("[005] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
37 if (!is_null($tmp = @$res->fetch_field_direct($link, $link)))
38 printf("[006] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
46 if (NULL !== ($tmp = $res->fetch_field_direct(0)))
[all …]
H A Dmysqli_autocommit_oo.phpt29 printf("[002] Expecting boolean/any, got %s/%s\n", gettype($tmp), $tmp);
37 $tmp = $res->fetch_assoc();
39 if ($tmp['auto_commit'])
43 printf("[006] Expecting true, got %s/%s\n", gettype($tmp), $tmp);
49 if (!$tmp['auto_commit'])
68 if ((!$tmp = $res->fetch_assoc()) || (1 != $tmp['num']))
85 if (!$tmp['auto_commit'])
89 printf("[019] Expecting true, got %s/%s\n", gettype($tmp), $tmp);
104 if (0 != $tmp['num'])
117 if ((!$tmp = $res->fetch_assoc()) || (1 != $tmp['num']))
[all …]
H A Dmysqli_more_results.phpt19 $tmp = NULL;
22 if (!is_null($tmp = @mysqli_more_results()))
23 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
25 if (!is_null($tmp = @mysqli_more_results($link)))
26 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
51 $tmp = ob_get_contents();
56 … $tmp = trim(preg_replace('@Strict Standards: mysqli_next_result\(\).*on line \d+@ism', '', $tmp));
58 print trim($tmp) . "\n";
83 $tmp = ob_get_contents();
88 … $tmp = trim(preg_replace('@Strict Standards: mysqli_next_result\(\).*on line \d+@ism', '', $tmp));
[all …]
H A Dmysqli_real_connect.phpt13 $tmp = NULL;
17 printf("[001a] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
20 printf("[001b] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
23 printf("[001c] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
26 printf("[001d] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
29 printf("[001e] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
32 printf("[001f] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
35 printf("[001g] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
39 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
153 var_dump($tmp);
[all …]
H A Dmysqli_fetch_field_oo.phpt13 $tmp = NULL;
19 if (!is_null($tmp = @$res->fetch_field()))
20 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
28 printf("[003] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
38 $tmp = $res->fetch_field();
39 var_dump($tmp);
48 $tmp->max_length);
50 if ($tmp->db != $db) {
52 $db, $tmp->db);
59 if (NULL !== ($tmp = $res->fetch_field()))
[all …]
H A Dmysqli_stmt_get_warnings.phpt29 $tmp = NULL;
32 if (!is_null($tmp = @mysqli_stmt_get_warnings()))
33 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
35 if (!is_null($tmp = @mysqli_stmt_get_warnings($link)))
36 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
43 if (NULL !== ($tmp = mysqli_stmt_get_warnings($stmt)))
44 printf("[004] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
49 if (false !== ($tmp = mysqli_stmt_get_warnings($stmt)))
50 printf("[006] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
56 printf("[008] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
[all …]
/PHP-5.3/ext/mysql/tests/
H A Dmysql_real_escape_string.phpt12 $tmp = NULL;
15 if (NULL !== ($tmp = @mysql_real_escape_string()))
16 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
20 if (NULL !== ($tmp = @mysql_real_escape_string('foo', $link, $link)))
21 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
29 var_dump($tmp = mysql_real_escape_string("foo" . chr(0) . "bar", $link));
31 assert($tmp === mysql_real_escape_string("foo" . chr(0) . "bar"));
H A Dmysql_stat.phpt13 $tmp = NULL;
16 if (!is_null($tmp = @mysql_stat($link)))
17 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
21 if (!is_null($tmp = @mysql_stat($link, "foo")))
22 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
41 if (false !== ($tmp = mysql_stat($link)))
42 printf("[005] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
H A Dmysql_list_tables.phpt12 $tmp = NULL;
15 if (NULL !== ($tmp = @mysql_list_tables()))
16 printf("[001] Expecting NULL got %s/%s\n", gettype($tmp), $tmp);
18 if (NULL !== ($tmp = @mysql_list_tables('too', 'many', 'arguments')))
19 printf("[002] Expecting NULL got %s/%s\n", gettype($tmp), $tmp);
21 if (false !== ($tmp = @mysql_list_tables(NULL)))
22 printf("[003] Expecting boolean/false got %s/%s\n", gettype($tmp), $tmp);
24 if (NULL !== ($tmp = @mysql_list_tables($db, NULL)))
25 printf("[004] Expecting NULL got %s/%s\n", gettype($tmp), $tmp);
/PHP-5.3/ext/pdo_mysql/tests/
H A Dpdo_mysql___construct.phpt76 $tmp = $e->getMessage();
77 if (!stristr($tmp, 'HY000') && !stristr($tmp, '2005') && !stristr($tmp, '2002'))
90 $tmp = $e->getMessage();
91 if (!stristr($tmp, 'HY000') && !stristr($tmp, '2005') && !stristr($tmp, '2002'))
107 $tmp = $e->getMessage();
108 if (!stristr($tmp, 'HY000') && !stristr($tmp, '2005') && !stristr($tmp, '2002'))
122 if (!stristr($tmp, 'HY000') && !stristr($tmp, '2005'))
148 if (!stristr($tmp, '42000') && !stristr($tmp, '1049'))
166 if (!stristr($tmp, 'HY000') && !stristr($tmp, '2002'))
186 (($tmp[0] >= 4 && $tmp[1] >= 1) || ($tmp[0] >= 5))) {
[all …]
/PHP-5.3/ext/soap/
H A Dphp_http.c96 zval **tmp; in http_context_headers() local
100 Z_TYPE_PP(tmp) == IS_STRING && Z_STRLEN_PP(tmp)) { in http_context_headers()
183 Z_TYPE_PP(tmp) == IS_LONG && Z_LVAL_PP(tmp) > 0) { in http_connect()
282 zval **trace, **tmp; in make_http_soap_request() local
373 …if (Z_TYPE_PP(tmp) != IS_STRING || !is_numeric_string(Z_STRVAL_PP(tmp), Z_STRLEN_PP(tmp), &redirec… in make_http_soap_request()
762 zval **tmp; in make_http_soap_request() local
840 char *tmp; in make_http_soap_request() local
848 tmp++; in make_http_soap_request()
851 tmp = strstr(tmp," "); in make_http_soap_request()
853 tmp++; in make_http_soap_request()
[all …]
/PHP-5.3/ext/standard/tests/dir/
H A Dscandir_variation8.phpt122 string(9) "-10.5.tmp"
124 string(9) "-2345.tmp"
130 string(4) ".tmp"
132 string(7) "0.5.tmp"
134 string(5) "0.tmp"
138 string(5) "1.tmp"
140 string(8) "10.5.tmp"
142 string(9) "12345.tmp"
146 string(9) "Array.tmp"
148 string(15) "double_file.tmp"
[all …]

Completed in 55 milliseconds

12345678910>>...45