Home
last modified time | relevance | path

Searched refs:tmp (Results 176 – 200 of 1167) sorted by relevance

12345678910>>...47

/PHP-7.1/ext/standard/tests/streams/
H A Dstream_get_meta_data_file_variation1.phpt49 string(%i) "%s.tmp"
69 string(%i) "%s.tmp"
89 string(%i) "%s.tmp"
109 string(%i) "%s.tmp"
129 string(%i) "%s.tmp"
149 string(%i) "%s.tmp"
169 string(%i) "%s.tmp"
189 string(%i) "%s.tmp"
209 string(%i) "%s.tmp"
229 string(%i) "%s.tmp"
[all …]
/PHP-7.1/ext/mysqli/tests/
H A Dmysqli_options.phpt30 $tmp = NULL;
33 if (!is_null($tmp = @mysqli_options()))
34 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
36 if (!is_null($tmp = @mysqli_options($link)))
37 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
46 printf("[003] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
48 if (!is_null($tmp = @mysqli_options($link, "s", 'extra_my.cnf')))
49 printf("[004] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
52 printf("[005] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
68 $tmp = mysqli_fetch_assoc($res);
[all …]
H A Dmysqli_stmt_num_rows.phpt13 $tmp = NULL;
16 if (!is_null($tmp = @mysqli_stmt_num_rows()))
17 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
19 if (!is_null($tmp = @mysqli_stmt_num_rows($link)))
20 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
44 if ($expected !== ($tmp = mysqli_stmt_num_rows($stmt)))
47 gettype($tmp), $tmp);
80 if (0 !== ($tmp = mysqli_stmt_num_rows($stmt)))
81 printf("[53 - %03d] Expecting int/0, got %s/%s\n", $i, gettype($tmp), $tmp);
96 printf("[54] Expecting int/7, got %s/%s\n", gettype($tmp), $tmp);
[all …]
H A Dmysqli_kill.phpt13 $tmp = NULL;
16 if (!is_null($tmp = @mysqli_kill()))
17 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
19 if (!is_null($tmp = @mysqli_kill($link)))
20 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
26 printf("[003] Expecting boolean/any, got %s/%s\n", gettype($tmp), $tmp);
31 $tmp = mysqli_kill($link, $thread_id);
32 if (!is_bool($tmp))
33 printf("[005] Expecting boolean/any, got %s/%s\n", gettype($tmp), $tmp);
63 (!$tmp = mysqli_fetch_assoc($res))) {
[all …]
H A Dmysqli_pconn_twice.phpt23 if (true !== ($tmp = my_mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket)))
24 printf("[003] Expecting boolean/true got %s/%s\n", gettype($tmp), $tmp);
42 if (true !== ($tmp = $link->real_connect($host, $user, $passwd, $db, $port, $socket)))
43 printf("[009] Expecting boolean/true got %s/%s\n", gettype($tmp), $tmp);
56 if (NULL !== ($tmp = $link->connect($host, $user, $passwd, $db, $port, $socket)))
57 printf("[013] Expecting NULL got %s/%s\n", gettype($tmp), $tmp);
63 if (NULL !== ($tmp = $link->connect($host, $user, $passwd, $db, $port, $socket)))
64 printf("[015] Expecting NULL got %s/%s\n", gettype($tmp), $tmp);
H A Dmysqli_real_escape_string_big5.phpt45 if ('���H�U���e\\\\���H�U���e' !== ($tmp = mysqli_real_escape_string($link,
47 printf("[004] Expecting \\\\, got %s\n", $tmp);
49 if ('���H�U���e\"���H�U���e' !== ($tmp = mysqli_real_escape_string($link,
51 printf("[005] Expecting \", got %s\n", $tmp);
53 if ("���H�U���e\'���H�U���e" !== ($tmp = mysqli_real_escape_string($link,
55 printf("[006] Expecting ', got %s\n", $tmp);
57 if ("���H�U���e\\n���H�U���e" !== ($tmp = mysqli_real_escape_string($link,
59 printf("[007] Expecting \\n, got %s\n", $tmp);
61 if ("���H�U���e\\r���H�U���e" !== ($tmp = mysqli_real_escape_string($link,
63 printf("[008] Expecting \\r, got %s\n", $tmp);
[all …]
H A Dmysqli_errno_oo.phpt13 $tmp = NULL;
17 if (0 !== ($tmp = @$mysqli->errno))
18 printf("[001] Expecting int/0, got %s/%s\n", gettype($tmp), $tmp);
34 if (($tmp = $mysqli->errno) === 0)
35 printf("[004] Expecting int/any non zero got %s/%s\n", gettype($tmp), $tmp);
H A Dmysqli_field_count.phpt13 $tmp = NULL;
16 if (!is_null($tmp = @mysqli_field_count()))
17 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
19 if (!is_null($tmp = @mysqli_field_count($link)))
20 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
H A Dmysqli_fetch_assoc.phpt13 $tmp = NULL;
18 if (!is_null($tmp = @mysqli_fetch_assoc()))
19 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
21 if (!is_null($tmp = @mysqli_fetch_assoc($link)))
22 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
63 if (NULL !== ($tmp = mysqli_fetch_assoc($res)))
64 printf("[008] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
H A Dmysqli_fetch_assoc_oo.phpt13 $tmp = NULL;
19 if (!is_null($tmp = @$res->fetch_assoc()))
20 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
27 if (!is_null($tmp = @$res->fetch_assoc($link)))
28 printf("[003] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
50 if (NULL !== ($tmp = $res->fetch_assoc()))
51 printf("[008] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
H A Dmysqli_field_tell.phpt13 $tmp = NULL;
16 if (!is_null($tmp = @mysqli_field_tell()))
17 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
19 if (!is_null($tmp = @mysqli_field_tell($link)))
20 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
34 if (!is_null($tmp = @mysqli_field_tell($res, 'too many arguments')))
35 printf("[004] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
H A Dmysqli_get_host_info.phpt13 if (!is_null($tmp = @mysqli_get_host_info()))
14 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
16 if (!is_null($tmp = @mysqli_get_host_info(NULL)))
17 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
H A Dmysqli_stmt_send_long_data_packet_size_libmysql.phpt46 $tmp = '';
49 $tmp .= 'a';
54 $blob .= $tmp;
58 if (true != ($tmp = mysqli_stmt_send_long_data($stmt, 1, $blob)))
60 gettype($tmp), $tmp, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
78 if (true != ($tmp = mysqli_stmt_send_long_data($stmt, 1, $blob2)))
80 gettype($tmp), $tmp, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
83 if (false !== ($tmp = mysqli_stmt_execute($stmt)))
85 gettype($tmp), $tmp, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
H A Dmysqli_prepare.phpt13 $tmp = NULL;
16 if (!is_null($tmp = @mysqli_prepare()))
17 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
19 if (!is_null($tmp = @mysqli_prepare($link)))
20 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
24 if (false !== ($tmp = @mysqli_prepare($link, false)))
25 printf("[003] Expecting boolean/false, got %s\n", gettype($tmp));
30 if (false !== ($tmp = mysqli_prepare($link, 'SELECT id FROM test WHERE id > ?')))
110 printf("[023] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
114 if (!is_null($tmp = @mysqli_stmt_prepare($link, 'SELECT id FROM test')))
[all …]
/PHP-7.1/ext/standard/tests/file/
H A Dfile_variation.phpt18 $fh = fopen($file_path."/file_variation.tmp", "w");
32 var_dump( file("file1_variation.tmp", FILE_USE_INCLUDE_PATH) );
33 var_dump( file($file_path1."/file1_variation.tmp", 1) );
36 $file_handle = fopen($file_path."/file2_variation.tmp", "w");
39 $out_array = file($file_path."/file2_variation.tmp");
43 $file_handle2 = fopen($file_path."/file3_variation.tmp", "w");
50 var_dump( file($file_path."/file3_variation.tmp" ));
59 unlink($file_path."/file_variation.tmp");
60 unlink($file_path."/file_variation/file1_variation.tmp");
61 unlink($file_path."/file2_variation.tmp");
[all …]
H A Dis_readable_variation1.phpt7 $filename = dirname(__FILE__)."/is_readable_root_check.tmp";
32 $fp = fopen("$file_path/is_readable_variation1/bar.tmp", "w");
38 "$file_path/is_readable_variation1/bar.tmp",
41 "$file_path/is_readable_variation1/bar.tmp/",
44 "$file_path/is_readable_variation1//bar.tmp",
45 "$file_path//is_readable_variation1//bar.tmp",
46 "$file_path/is_readable_variation1/*.tmp",
47 "$file_path/is_readable_variation1/b*.tmp",
50 "$file_path/is_readable_variation1".chr(0)."bar.tmp",
51 "$file_path".chr(0)."is_readable_variation1/bar.tmp",
[all …]
H A Drename_variation3.phpt19 $filename = $file_path."/rename_variation31.tmp";
23 $linkname = $file_path."/rename_variation3_hard_link1.tmp";
27 $dest_linkname = $file_path."/rename_variation3_hard_link2.tmp";
34 var_dump( rename($dest_linkname, $dest_dir."/rename_variation3_hard_link2.tmp") );
37 var_dump( file_exists($dest_dir."/rename_variation3_hard_link2.tmp") ); // expecting true
40 unlink($dest_dir."/rename_variation3_hard_link2.tmp");
47 unlink($file_path."/rename_variation3_hard_link1.tmp");
H A Dis_executable_variation2.phpt9 $filename = dirname(__FILE__)."/is_readable_root_check.tmp";
52 "$file_path/is_executable_variation21.tmp",
53 "$file_path/is_executable_variation22.tmp",
54 "$file_path/is_executable_variation23.tmp",
55 "$file_path/is_executable_variation24.tmp",
56 "$file_path/is_executable_variation25.tmp",
57 "$file_path/is_executable_variation26.tmp",
58 "$file_path/is_executable_variation27.tmp",
59 "$file_path/is_executable_variation28.tmp",
60 "$file_path/is_executable_variation29.tmp",
[all …]
/PHP-7.1/ext/gd/libgd/
H A Dgdkanji.c76 char *tmp; in error() local
82 efree(tmp); in error()
488 ustrcpy (tmp, from); in do_check_and_conv()
493 ustrcpy (tmp, from); in do_check_and_conv()
501 ustrcpy (tmp, from); in do_check_and_conv()
522 if (tmp[i] == SS2) in do_check_and_conv()
524 p1 = tmp[++i]; in do_check_and_conv()
527 p2 = tmp[i + 2]; in do_check_and_conv()
541 to[j++] = tmp[i]; in do_check_and_conv()
547 ustrcpy (to, tmp); in do_check_and_conv()
[all …]
/PHP-7.1/ext/pdo_mysql/tests/
H A Dpdo_mysql_prepare_native.phpt25 $tmp = $db->errorInfo();
35 ($error_info['prepare']['mysql'] !== $tmp[1])) {
60 $tmp = $stmt->errorInfo();
61 if (isset($tmp[1]) && ($tmp[1] == 2030)) {
180 var_dump($tmp);
237 $tmp = $stmt->fetchAll(PDO::FETCH_ASSOC);
254 if ($tmp !== $exp) {
257 var_dump($tmp);
299 $tmp = $stmt->fetchAll(PDO::FETCH_ASSOC);
308 if ($tmp !== $exp) {
[all …]
/PHP-7.1/Zend/
H A Dzend_exceptions.c204 zval obj, tmp; in zend_default_exception_new_ex() local
227 zval_ptr_dtor(&tmp); in zend_default_exception_new_ex()
362 zval_ptr_dtor(&tmp); in ZEND_METHOD()
548 zval *file, *tmp; in _build_trace_string() local
562 if (tmp) { in _build_trace_string()
585 if (tmp) { in _build_trace_string()
686 zval rv, tmp; in ZEND_METHOD() local
766 ZVAL_STR(&tmp, str); in ZEND_METHOD()
912 zval ex, tmp; in zend_throw_exception() local
957 zval ex, tmp; in zend_throw_error_exception() local
[all …]
/PHP-7.1/ext/standard/
H A Dcrypt_blowfish.c382 tmp = BF_atoi64[tmp]; \
384 (dst) = tmp; \
454 BF_word tmp; in BF_swap() local
458 tmp = *x; in BF_swap()
459 tmp = (tmp << 16) | (tmp >> 16); in BF_swap()
460 *x++ = ((tmp & 0x00FF00FF) << 8) | ((tmp >> 8) & 0x00FF00FF); in BF_swap()
600 tmp[0] = tmp[1] = 0; in BF_set_key()
602 tmp[0] <<= 8; in BF_set_key()
604 tmp[1] <<= 8; in BF_set_key()
619 diff |= tmp[0] ^ tmp[1]; /* Non-zero on any differences */ in BF_set_key()
[all …]
/PHP-7.1/ext/standard/tests/time/
H A Didate.phpt6 $tmp = "UYzymndjHGhgistwLBIW";
7 for($a = 0;$a < strlen($tmp); $a++){
8 echo $tmp[$a], ': ', idate($tmp[$a], 1043324459)."\n";
/PHP-7.1/ext/oci8/
H A Doci8_interface.c252 zval *tmp, *z_descriptor = getThis(); in PHP_FUNCTION() local
277 zval *tmp, *z_descriptor = getThis(); in PHP_FUNCTION() local
318 zval *tmp, *z_descriptor = getThis(); in PHP_FUNCTION() local
352 zval *tmp, *z_descriptor = getThis(); in PHP_FUNCTION() local
389 zval *tmp, *z_descriptor = getThis(); in PHP_FUNCTION() local
436 zval *tmp, *z_descriptor = getThis(); in PHP_FUNCTION() local
466 zval *tmp, *z_descriptor = getThis(); in PHP_FUNCTION() local
490 zval *tmp, *z_descriptor = getThis(); in PHP_FUNCTION() local
1449 zval element, tmp; in PHP_FUNCTION() local
1523 array_init(&tmp); in PHP_FUNCTION()
[all …]
/PHP-7.1/ext/gd/tests/
H A Dimagerotate_overflow.phpt18 $tmp = imagerotate ($im, 5, -9999999);
20 var_dump($tmp);
22 if ($tmp) {
23 imagedestroy($tmp);

Completed in 56 milliseconds

12345678910>>...47