Home
last modified time | relevance | path

Searched refs:h (Results 201 – 225 of 747) sorted by last modified time

12345678910>>...30

/PHP-5.5/ext/standard/tests/file/
H A Dtempnam_variation5-win32.phpt23 $h = fopen($dir_name."/tempnam_variation6.tmp", "w");
39 fclose($h);
H A Dtouch_basic-win32.phpt35 $h = fopen($filename, "wb");
36 fwrite($h, $testln);
37 fclose($h);
39 $h = fopen($filename, "rb");
40 echo fgets($h);
41 fclose($h);
H A Dtouch_basic.phpt36 $h = fopen($filename, "wb");
37 fwrite($h, $testln);
38 fclose($h);
40 $h = fopen($filename, "rb");
41 echo fgets($h);
42 fclose($h);
H A Dtouch_variation5-win32.phpt121 $h = @fopen($path,"w");
122 if ($h !== false) {
123 fclose($h);
H A Dtouch_variation5.phpt121 $h = @fopen($path,"w");
122 if ($h !== false) {
123 fclose($h);
H A Dtouch_variation6-win32.phpt127 $h = @fopen($path,"w");
128 if ($h !== false) {
129 fclose($h);
H A Dparse_ini_file_variation6-win32.phpt53 $h = fopen($absFile,"w");
54 fwrite($h, $content);
55 fclose($h);
H A Dparse_ini_file_variation6.phpt45 $h = fopen($absFile,"w");
46 fwrite($h, $content);
47 fclose($h);
H A Dpathinfo_basic1-win32.phpt330 string(1) "h"
338 string(1) "h"
345 string(1) "h"
353 string(1) "h"
425 string(1) "h"
433 string(1) "h"
453 string(1) "h"
461 string(1) "h"
513 string(1) "h"
521 string(1) "h"
[all …]
H A Dpathinfo_basic1.phpt38 '/usr/include/arpa/inet.h',
45 '/usr/include/arpa/inet.h',
330 %unicode|string%(1) "h"
338 %unicode|string%(1) "h"
345 %unicode|string%(1) "h"
353 %unicode|string%(1) "h"
425 %unicode|string%(1) "h"
433 %unicode|string%(1) "h"
453 %unicode|string%(1) "h"
461 %unicode|string%(1) "h"
[all …]
H A Dpathinfo_basic2-win32.phpt83 string(6) "inet.h"
84 string(1) "h"
90 string(6) "inet.h"
92 string(1) "h"
113 string(7) "inet..h"
114 string(1) "h"
122 string(1) "h"
158 string(6) "inet,h"
160 string(6) "inet,h"
165 string(6) "inet,h"
[all …]
H A Dpathinfo_basic2.phpt23 '/usr/include/arpa/inet..h',
26 '/usr/include/arpa/inet,h',
85 %unicode|string%(6) "inet.h"
86 %unicode|string%(1) "h"
92 %unicode|string%(6) "inet.h"
94 %unicode|string%(1) "h"
115 %unicode|string%(7) "inet..h"
116 %unicode|string%(1) "h"
124 %unicode|string%(1) "h"
160 %unicode|string%(6) "inet,h"
[all …]
H A Dpathinfo_variation2.phpt25 $path = '/usr/include/arpa/inet.h';
112 string(6) "inet.h"
115 string(6) "inet.h"
H A Dpathinfo_variation3.phpt15 $testfile = "/usr/include/arpa/inet.h";
68 string(6) "inet.h"
70 string(1) "h"
73 string(6) "inet.h"
74 string(1) "h"
75 string(6) "inet.h"
77 string(6) "inet.h"
H A Dreadfile_variation4.phpt27 $h = fopen($filename,'wb');
28 fwrite($h, "testing readfile");
29 fclose($h);
119 $h = readfile($filename, $use_include_path, $value);
120 if ($h == false) {
H A Dreadfile_variation5.phpt27 $h = fopen($filename,'wb');
28 fwrite($h, "testing readfile");
29 fclose($h);
H A Dreadfile_variation6.phpt37 $h = fopen($secondFile, "w");
38 fwrite($h, "File in include path");
39 fclose($h);
H A Dreadfile_variation7.phpt37 $h = fopen($scriptLocFile, "w");
38 fwrite($h, "File in script location");
39 fclose($h);
H A Dreadfile_variation8-win32.phpt30 $h = fopen($absFile,"w");
31 fwrite($h, "The File Contents");
32 fclose($h);
H A Dreadfile_variation9.phpt25 $h = fopen($absFile,"w");
26 fwrite($h, "The File Contents");
27 fclose($h);
H A Dmkdir_variation2.phpt103 $h = mkdir($pathname, $value);
104 if ($h === true) {
H A Dmkdir_variation3.phpt110 $h = mkdir($pathname, $mode, $value);
111 if ($h === true) {
H A Dmkdir_variation4.phpt116 $h = mkdir($pathname, $mode, $recursive, $value);
117 if ($h === true) {
H A Dfseek_variation3.phpt17 $h = fopen($outputfile, "wb+");
19 fwrite($h, chr(0x30 + $i));
23 var_dump(fseek($h, -4, SEEK_SET));
24 echo "after -4 seek: ".bin2hex(fread($h,1))."\n";
25 var_dump(fseek($h, -1, SEEK_CUR));
27 var_dump(fseek($h, -20, SEEK_CUR));
31 var_dump(fseek($h, 16, SEEK_SET));
32 fwrite($h, b"end");
33 fseek($h ,0, SEEK_SET);
34 $data = fread($h, 4096);
[all …]
H A Dfread_fwrite_basic.phpt29 fwrite($h, $out1);
32 fwrite($h, $out2);
34 var_dump(feof($h));
36 fwrite($h, $out3);
39 fclose($h);
43 fread($h,1024);
44 var_dump(feof($h));
45 fread($h,1);
48 fwrite($h, $out);
50 fread($h,1);
[all …]

Completed in 32 milliseconds

12345678910>>...30