Home
last modified time | relevance | path

Searched refs:tmp (Results 376 – 400 of 1109) sorted by relevance

1...<<11121314151617181920>>...45

/PHP-5.3/ext/mysqli/tests/
H A Dmysqli_real_connect_pconn.phpt31 …if (false !== ($tmp = mysqli_real_connect($link, $host, $user . 'unknown_really', $passwd . 'non_e…
32 …er=%s, passwd=***non_empty, dbname=%s, port=%s, socket=%s\n", gettype($tmp), $tmp, $host, $user . …
126 $tmp = mysqli_fetch_assoc($res);
127 if ($tmp['testing'] !== 'mysqli.default_host (persistent)') {
130 var_dump($tmp);
144 if (NULL === ($tmp = mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket)))
145 printf("[026] Expecting not NULL, got %s/%s\n", gettype($tmp), $tmp);
/PHP-5.3/ext/standard/tests/file/
H A Dreadfile_variation3.phpt20 $filename = "$dirname/readfile_variation3.tmp";
29 $count = readfile("readfile_variation3.tmp", true);
35 $count = readfile("readfile_variation3.tmp", true, $context);
43 unlink(dirname(__FILE__)."/readfile_variation3/readfile_variation3.tmp");
H A Dlstat_stat_variation15.phpt25 $filename = "$file_path/lstat_stat_variation15.tmp";
30 $linkname = "$file_path/lstat_stat_variation15_link.tmp";
54 unlink("$file_path/lstat_stat_variation15_link.tmp");
55 unlink("$file_path/lstat_stat_variation15.tmp");
H A D006_error.phpt9 $filename = dirname(__FILE__)."/006_root_check.tmp";
50 $fp = fopen(dirname(__FILE__)."/006_error.tmp", "w");
52 var_dump( chmod(dirname(__FILE__)."/006_error.tmp") );
58 var_dump( chmod(dirname(__FILE__)."/006_error.tmp", 0755, TRUE) );
59 var_dump( fileperms(dirname(__FILE__)."/006_error.tmp", 0777) );
66 unlink( dirname(__FILE__)."/006_error.tmp");
H A Dlstat_stat_variation20.phpt23 $fp = fopen("$file_path/lstat_stat_variation20.tmp", "w"); // temp file
27 symlink("$file_path/lstat_stat_variation20.tmp", "$file_path/lstat_stat_variation20_link.tmp");
38 $link_object = new names("$file_path/lstat_stat_variation20_link.tmp");
42 $link_array = array("$file_path/lstat_stat_variation20_link.tmp");
45 $link_array_with_key = array("linkname" => "$file_path/lstat_stat_variation20_link.tmp");
61 unlink("$file_path/lstat_stat_variation20_link.tmp");
62 unlink("$file_path/lstat_stat_variation20.tmp");
H A Dpopen_pclose_basic.phpt27 touch($dirpath."/popen_basic.tmp");
35 $filename = $dirpath."/popen_basic1.tmp";
70 unlink($dirpath."/popen_basic.tmp");
71 unlink($dirpath."/popen_basic1.tmp");
78 popen_basic.tmp
H A Dfopen_variation10-win32.phpt10 if (!is_writable('c:\\fopen_variation10.tmp')) {
47 $file = "fopen_variation10.tmp";
98 Warning: fopen(c\fopen_variation10.tmp): failed to open stream: No such file or directory in %s on …
105 Warning: fopen(\\fopen_variation10.tmp): failed to open stream: Invalid argument in %s on line %d
112 Warning: fopen(/\fopen_variation10.tmp): failed to open stream: Invalid argument in %s on line %d
122 Warning: fopen(c:adir\fopen_variation10.tmp): failed to open stream: No such file or directory in %…
144 Warning: fopen(/sortout\fopen_variation10.tmp): failed to open stream: No such file or directory in…
H A Drename_variation9.phpt25 $src_name = "$file_path/rename_variation9.tmp";
26 $dest_name = "$file_path/rename_variation9_new.tmp";
41 unlink(dirname(__FILE__)."/rename_variation9_new.tmp");
/PHP-5.3/ext/session/tests/
H A Dbug32330.phpt9 session.save_path=/tmp
71 open: path = /tmp, name = sid
76 open: path = /tmp, name = sid
81 open: path = /tmp, name = sid
/PHP-5.3/ext/ereg/
H A Dereg.c482 tmp = strlen(buf); in php_ereg_replace()
497 walkbuf += tmp; in php_ereg_replace()
733 char *string, *tmp; in PHP_FUNCTION() local
747 tmp[j++] = '['; in PHP_FUNCTION()
748 tmp[j++] = toupper(c); in PHP_FUNCTION()
749 tmp[j++] = tolower(c); in PHP_FUNCTION()
750 tmp[j++] = ']'; in PHP_FUNCTION()
752 tmp[j++] = c; in PHP_FUNCTION()
755 tmp[j] = 0; in PHP_FUNCTION()
757 RETVAL_STRINGL(tmp, j, 1); in PHP_FUNCTION()
[all …]
/PHP-5.3/ext/mysql/tests/
H A Dmysql_fetch_object.phpt12 $tmp = NULL;
15 if (!is_null($tmp = @mysql_fetch_object()))
16 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
18 if (false !== ($tmp = @mysql_fetch_object($link)))
19 printf("[002] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
H A Dmysql_result.phpt12 $tmp = NULL;
17 if (!is_null($tmp = @mysql_result()))
18 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
20 if (!is_null($tmp = @mysql_result($link)))
21 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
H A Dmysql_fetch_array.phpt12 $tmp = NULL;
15 if (NULL !== ($tmp = @mysql_fetch_array()))
16 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
18 if (NULL != ($tmp = @mysql_fetch_array($link)))
19 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
59 $tmp = mysql_fetch_array($res, $illegal_mode);
60 if (!is_array($tmp))
62 gettype($tmp), $tmp, mysql_errno($link), mysql_error($link));
65 if (false !== $tmp)
67 gettype($tmp), $tmp, mysql_errno($link), mysql_error($link));
[all …]
/PHP-5.3/TSRM/
H A Dtsrm_virtual_cwd.c263 char tmp[MAXPATHLEN]; in php_sys_readlink() local
317 char *tmp = cur_path; in php_sys_stat_ex() local
322 if (tmp[1] == ':') { in php_sys_stat_ex()
340 if (tmp != cur_path) { in php_sys_stat_ex()
341 free(tmp); in php_sys_stat_ex()
775 char *tmp; in tsrm_realpath_r() local
877 memcpy(tmp, path, len+1); in tsrm_realpath_r()
1034 memcpy(path, tmp, i-1); in tsrm_realpath_r()
1173 void *tmp; in virtual_file_ex() local
1334 if (tmp == NULL) { in virtual_file_ex()
[all …]
/PHP-5.3/ext/readline/tests/
H A Dreadline_read_history_001.phpt8 $name = tempnam('/tmp', 'readline.tmp');
/PHP-5.3/ext/pcre/
H A Dupgrade-pcre.php55 if (is_file($tmp = $newfile . '.generic') || is_file($tmp = $newfile . '.dist')) {
56 $newfile = $tmp;
/PHP-5.3/ext/oci8/tests/
H A Dlob_012.phpt38 var_dump($row[0]->export(dirname(__FILE__)."/lob_012.tmp", 3, 10));
40 var_dump(file_get_contents(dirname(__FILE__)."/lob_012.tmp"));
42 @unlink(dirname(__FILE__)."/lob_012.tmp");
/PHP-5.3/
H A DMakefile.global88 $(EGREP) -h -v $(PHP_DEPRECATED_DIRECTIVES_REGEX) "$$INI_FILE" > $(top_builddir)/tmp-php.ini; \
90 echo > $(top_builddir)/tmp-php.ini; \
95 … -v $(PHP_DEPRECATED_DIRECTIVES_REGEX) "$$INI_SCANNED_PATH"/*.ini >> $(top_builddir)/tmp-php.ini; \
100 …XECUTABLE) -n -c $(top_builddir)/tmp-php.ini $(PHP_TEST_SETTINGS) $(top_srcdir)/run-tests.php -n -…
102 rm $(top_builddir)/tmp-php.ini; \
/PHP-5.3/ext/spl/tests/
H A DSplDoublyLinkedList_lifoMode.phpt17 while ($tmp = $list->current()) {
18 echo $tmp;
/PHP-5.3/ext/soap/
H A Dphp_schema.c2041 sdlAttributePtr *tmp; in schema_attribute_fixup() local
2090 sdlTypePtr *tmp; in schema_attributegroup_fixup() local
2144 sdlTypePtr *tmp; in schema_content_model_fixup() local
2191 sdlTypePtr *tmp; in schema_type_fixup() local
2202 if ((*tmp)->fixed) { in schema_type_fixup()
2205 if ((*tmp)->def) { in schema_type_fixup()
2299 switch (tmp->kind) { in delete_model()
2315 efree(tmp); in delete_model()
2321 switch (tmp->kind) { in delete_model_persistent()
2329 free(tmp->u.content); in delete_model_persistent()
[all …]
/PHP-5.3/ext/pdo_mysql/tests/
H A Dpdo_mysql_prepare_native_placeholder_everywhere.phpt44 $tmp = $stmt->fetchAll(PDO::FETCH_ASSOC);
46 if (isset($tmp[0]['id'])) {
48 if (gettype($tmp[0]['id']) == 'string')
50 settype($tmp[0]['id'], 'integer');
53 var_dump($tmp);
/PHP-5.3/ext/standard/tests/streams/
H A Dstream_get_meta_data_file_variation4.phpt7 $filename = __FILE__ . '.tmp';
42 string(%i) "File://%sstream_get_meta_data_file_variation4.php.tmp"
64 string(%i) "stream_get_meta_data_file_variation4.php.tmp"
/PHP-5.3/ext/standard/tests/general_functions/
H A Dbug48768.phpt6 $ini_location = dirname(__FILE__) . '/bug48768.tmp';
22 <?php @unlink(dirname(__FILE__) . '/bug48768.tmp'); ?>
/PHP-5.3/sapi/fpm/fpm/
H A Dfpm_log.c106 char tmp[129]; in fpm_log_write() local
370 char *tmp = fcgi_get_last_client_ip(); in fpm_log_write() local
371 len2 = snprintf(b, FPM_LOG_BUFFER - len, "%s", tmp ? tmp : "-"); in fpm_log_write()
391 strftime(tmp, sizeof(tmp) - 1, "%d/%b/%Y:%H:%M:%S %z", localtime(t)); in fpm_log_write()
393 strftime(tmp, sizeof(tmp) - 1, format, localtime(t)); in fpm_log_write()
395 len2 = snprintf(b, FPM_LOG_BUFFER - len, "%s", tmp); in fpm_log_write()
/PHP-5.3/ext/xmlwriter/tests/
H A Dxmlwriter_set_indent_string_basic_001.phpt7 $temp_filename = dirname(__FILE__)."/xmlwriter_set_indent_string.tmp";
16 $temp_filename = dirname(__FILE__)."/xmlwriter_set_indent_string.tmp";

Completed in 56 milliseconds

1...<<11121314151617181920>>...45