Home
last modified time | relevance | path

Searched refs:temp (Results 51 – 75 of 241) sorted by relevance

12345678910

/PHP-7.4/ext/standard/tests/file/
H A Dlstat_stat_variation12.phpt26 /* create temp file, link */
28 $fp = fopen($filename, "w"); // temp file
32 symlink($filename, $linkname); // temp link
H A Dlstat_stat_variation3.phpt24 /* create temp file & link */
25 $fp = fopen("$file_path/lstat_stat_variation3.tmp", "w"); // temp file
28 // temp link
H A Drealpath_variation2.phpt25 'c:temp',
57 --c:temp--
H A Dreadfile_variation2.phpt26 // temp file used here
29 // create temp file and insert data into it
34 // temp link name used
H A Dlstat_stat_variation6.phpt34 /* create temp file, link and directory */
37 $fp = fopen($file_name, "w"); // temp file
40 symlink($file_name, $link_name); // temp link
H A Dstat_variation1-win32-mb.phpt23 /* create temp file and directory */
24 mkdir("$file_path/stat_variation1_私はガラスを食べられます/"); // temp dir
26 $file_handle = fopen("$file_path/stat_variation1_私はガラスを食べられます.tmp", "w"); // temp file
H A Dstat_variation1-win32.phpt23 /* create temp file and directory */
24 mkdir("$file_path/stat_variation1/"); // temp dir
26 $file_handle = fopen("$file_path/stat_variation1.tmp", "w"); // temp file
H A Dstat_variation4-win32.phpt23 /* create temp file and directory */
24 mkdir("$file_path/stat_variation4/"); // temp dir
26 $file_handle = fopen("$file_path/stat_variation4.tmp", "w"); // temp file
H A Dstat_variation6-win32.phpt24 /* create temp file and directory */
26 mkdir($dirname); // temp dir
29 $file_handle = fopen($filename, "w"); // temp file
H A Dunlink_basic.phpt12 $filename = "$file_path/unlink_basic.tmp"; // temp file name used here
24 // temp file name used here
H A Dis_executable_variation1.phpt41 "$file_path/is_executable_variation1".chr(0)."bar.temp",
42 "$file_path".chr(0)."is_executable_variation1/bar.temp",
47 "$file_path/is_executable_variation1" // temp directory, exp: bool(true)
H A Dtempnam_variation2-win32.phpt66 echo "temp dir\n";
128 File created in => temp dir
140 File created in => temp dir
147 File created in => temp dir
169 File created in => temp dir
H A Dtempnam_variation2.phpt66 echo "temp dir\n";
128 File created in => temp dir
140 File created in => temp dir
147 File created in => temp dir
169 File created in => temp dir
H A Dfile_error.phpt21 var_dump( file("temp.tmp") ); // non existing filename
44 Warning: file(temp.tmp): failed to open stream: No such file or directory in %s on line %d
H A Dlstat_stat_variation14.phpt18 /* create temp file & link */
20 $fp = fopen($filename, "w"); // temp file
H A Dlstat_stat_variation2.phpt17 /* create temp directory */
18 mkdir("$file_path/lstat_stat_variation1/"); // temp dir
H A Dlstat_stat_variation1.phpt17 /* create temp file */
18 $fp = fopen("$file_path/lstat_stat_variation1.tmp", "w"); // temp file
H A Dlstat_stat_variation11.phpt21 /* create temp file */
23 $fp = fopen($filename, "w"); // temp file
H A Dlstat_stat_error.phpt16 var_dump( lstat("$file_path/temp.tmp") ); // non existing file
26 var_dump( stat("$file_path/temp.tmp") ); // non existing file
27 var_dump( stat("$file_path/temp/") ); // non existing dir
/PHP-7.4/tests/output/
H A Dstream_isatty.inc16 'Invalid stream (php://temp)' => fopen('php://temp', 'wb'),
H A Dsapi_windows_vt100_support.inc39 'Invalid stream (php://temp)' => fopen('php://temp', 'wb'),
/PHP-7.4/ext/gd/tests/
H A Dbug43073.phpt51 $temp = $cos_t * $x + $sin_t * $y;
53 $x = $temp;
/PHP-7.4/ext/gmp/
H A Dgmp.c283 #define FREE_GMP_TEMP(temp) \ argument
284 if (temp.is_used) { \
285 mpz_clear(temp.num); \
294 if (convert_to_gmp(temp.num, zval, 0) == FAILURE) { \
295 mpz_clear(temp.num); \
310 if (convert_to_gmp(temp.num, zval, 0) == FAILURE) { \
311 mpz_clear(temp.num); \
325 if (convert_to_gmp(temp.num, zval, 0) == FAILURE) { \
478 gmp_temp_t temp; in shift_operator_helper() local
480 FETCH_GMP_ZVAL(gmpnum_op, op1, temp); in shift_operator_helper()
[all …]
/PHP-7.4/ext/spl/tests/
H A Dbug51374.phpt9 $fileInfo = new SplFileInfo('php://temp');
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_substitute.c241 PCRE2_UCHAR temp[6]; in pcre2_substitute() local
781 if (utf) chlen = PRIV(ord2utf)(ch, temp); else in pcre2_substitute()
784 temp[0] = ch; in pcre2_substitute()
787 CHECKMEMCPY(temp, chlen); in pcre2_substitute()
883 if (utf) chlen = PRIV(ord2utf)(ch, temp); else in pcre2_substitute()
886 temp[0] = ch; in pcre2_substitute()
889 CHECKMEMCPY(temp, chlen); in pcre2_substitute()
944 temp[0] = 0; in pcre2_substitute()
945 CHECKMEMCPY(temp, 1); in pcre2_substitute()

Completed in 34 milliseconds

12345678910