Home
last modified time | relevance | path

Searched refs:tmp (Results 426 – 450 of 1192) sorted by relevance

1...<<11121314151617181920>>...48

/PHP-7.3/ext/dom/tests/
H A DDOMDocument_save_basic.phpt22 $temp_filename = dirname(__FILE__)."/DomDocument_save_basic.tmp";
28 $temp_filename = dirname(__FILE__)."/DomDocument_save_basic.tmp";
H A DDOMNode_C14NFile_basic.phpt23 $output = dirname(__FILE__).'/DOMNode_C14NFile_basic.tmp';
33 $output = dirname(__FILE__).'/DOMNode_C14NFile_basic.tmp';
/PHP-7.3/ext/pdo_mysql/tests/
H A Dpdo_mysql_attr_autocommit.phpt16 if (1 !== ($tmp = $db->getAttribute(PDO::ATTR_AUTOCOMMIT)))
17 printf("[001] Expecting int/1 got %s\n", var_export($tmp, true));
36 if (0 !== ($tmp = $db->getAttribute(PDO::ATTR_AUTOCOMMIT)))
37 printf("[006] Expecting int/0 got %s\n", var_export($tmp, true));
50 if (1 !== ($tmp = $db->getAttribute(PDO::ATTR_AUTOCOMMIT)))
51 printf("[010] Expecting int/1 got %s\n", var_export($tmp, true));
H A Dpdo_mysql_phpinfo.phpt17 $tmp = ob_get_contents();
23 if (!preg_match("/$reg/", $tmp)) {
/PHP-7.3/ext/filter/tests/
H A D015.phpt32 'file:///tmp/test.c',
33 'ftp://ftp.example.com/tmp/',
34 '/tmp/test.c',
60 var_dump(filter_var("/tmp/test", FILTER_VALIDATE_URL));
93 string(18) "file:///tmp/test.c"
94 string(26) "ftp://ftp.example.com/tmp/"
/PHP-7.3/ext/standard/tests/file/
H A Dbug53241.phpt10 $fn = __DIR__ . "/test.tmp";
18 $fn = __DIR__ . "/test.tmp";
H A Drename_variation7.phpt11 $tmp_link = __FILE__.".tmp.link";
12 $tmp_link2 = __FILE__.".tmp.link2";
H A Dglob_variation5.phpt9 ini_set('open_basedir', '/tmp');
18 var_dump('/tmp' == ini_get('open_basedir'));
H A Ddisk_free_space_error-win32.phpt29 $fh = fopen( $file_path."/disk_free_space.tmp", "w" );
31 var_dump( disk_free_space( $file_path."/disk_free_space.tmp" )); // file input instead of directory
32 var_dump( diskfreespace( $file_path."/disk_free_space.tmp" ));
40 unlink($file_path."/disk_free_space.tmp");
H A Dreadfile_variation9.phpt21 $theFile = "fileToRead.tmp";
81 Warning: readfile(%sreadfileVar8Sub/..///readfileVar8Sub//..//../readfileVar8Sub/fileToRead.tmp): f…
85 Warning: readfile(%sreadfileVar8Sub/BADDIR/fileToRead.tmp): failed to open stream: No such file or …
97 Warning: readfile(BADDIR/fileToRead.tmp): failed to open stream: No such file or directory in %s on…
H A Drename_variation8-win32.phpt17 $src_name = $file_path."/non_existent_file.tmp";
18 $dest_name = $file_path."/rename_variation8_new.tmp";
53 Warning: rename(%s/non_existent_file.tmp,%s/rename_variation8_new.tmp): The system cannot find the …
H A Ddisk_total_space_error-win32.phpt26 $fh = fopen( $file_path."/disk_total_space.tmp", "w" );
28 var_dump( disk_total_space( $file_path."/disk_total_space.tmp" )); // file input instead of directo…
36 unlink($file_path."/disk_total_space.tmp");
H A Dstat_variation5-win32.phpt23 $file_handle = fopen("$file_path/stat_variation5.tmp", "w"); // temp file
29 $filename = "$file_path/stat_variation5.tmp";
55 unlink("$file_path/stat_variation5.tmp");
H A Dbug74719.phpt9 $tmpFile = __DIR__ . "/bug74719.tmp";
16 $newTmpFile = __DIR__ . "/bug74719_renamed.tmp";
H A Dfile_get_contents_variation7.phpt42 $filename = 'FileGetContentsVar7.tmp';
79 …/fileGetContentsVar7Sub//..//../fileGetContentsVar7Sub/FileGetContentsVar7.tmp): failed to open st…
84 …sfileGetContentsVar7.dir/fileGetContentsVar7Sub/BADDIR/FileGetContentsVar7.tmp): failed to open st…
101 Warning: file_get_contents(BADDIR/FileGetContentsVar7.tmp): failed to open stream: No such file or …
H A Dfile_variation8.phpt42 $filename = 'FileGetContentsVar7.tmp';
91 …8.dir/fileVar8Sub/..///fileVar8Sub//..//../fileVar8Sub/FileGetContentsVar7.tmp): failed to open st…
96 Warning: file(%sfileVar8.dir/fileVar8Sub/BADDIR/FileGetContentsVar7.tmp): failed to open stream: No…
125 Warning: file(BADDIR/FileGetContentsVar7.tmp): failed to open stream: No such file or directory in …
/PHP-7.3/Zend/tests/
H A Dcast_to_double.phpt35 $tmp = (double)$var;
36 var_dump($tmp);
H A Dcast_to_string.phpt33 $tmp = (string)$var;
34 var_dump($tmp);
/PHP-7.3/sapi/cli/tests/
H A D021.phpt19 $filename = __DIR__.'/021.tmp.php';
36 unlink(__DIR__.'/021.tmp.php');
/PHP-7.3/ext/standard/
H A Dlevenshtein.c31 zend_long *p1, *p2, *tmp; in reference_levdist() local
66 tmp = p1; in reference_levdist()
68 p2 = tmp; in reference_levdist()
H A Dnet.c196 char tmp[256]; in PHP_FUNCTION() local
197 memset(tmp, 0, sizeof(tmp)); in PHP_FUNCTION()
198 wcstombs(tmp, p->Description, sizeof(tmp)); in PHP_FUNCTION()
199 add_assoc_string(&iface, "description", tmp); in PHP_FUNCTION()
/PHP-7.3/ext/mysqli/tests/
H A Dmysqli_debug_mysqlnd_only.phpt30 if (true !== ($tmp = @mysqli_debug($control_string))) {
34 gettype($tmp),
35 $tmp);
56 gettype($tmp),
57 $tmp);
H A Dmysqli_fetch_object.phpt15 $tmp = NULL;
18 if (!is_null($tmp = @mysqli_fetch_object()))
19 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
21 if (!is_null($tmp = @mysqli_fetch_object($link)))
22 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
/PHP-7.3/sapi/cli/
H A Dps_title.c402 char *tmp; in get_ps_title() local
408 tmp = php_win32_cp_conv_w_to_any(ps_buffer_w, PHP_WIN32_CP_IGNORE_LEN, &ps_buffer_cur_len); in get_ps_title()
409 if (!tmp) { in get_ps_title()
415 memmove(ps_buffer, tmp, ps_buffer_cur_len); in get_ps_title()
416 free(tmp); in get_ps_title()
/PHP-7.3/ext/sockets/tests/
H A Dsocket_create_listen-nobind.phpt8 $filename = dirname(__FILE__) . '/006_root_check.tmp';
22 unlink(dirname(__FILE__) . '/006_root_check.tmp');

Completed in 43 milliseconds

1...<<11121314151617181920>>...48