Home
last modified time | relevance | path

Searched refs:file (Results 151 – 175 of 1891) sorted by relevance

12345678910>>...76

/PHP-5.3/ext/standard/tests/file/
H A Dunlink_basic.phpt11 echo "*** Testing unlink() on a file ***\n";
12 $filename = "$file_path/unlink_basic.tmp"; // temp file name used here
13 $fp = fopen($filename, "w"); // create file
17 // delete file
19 var_dump( file_exists($filename) ); // confirm file doesnt exist
24 // temp file name used here
26 $fp = fopen($filename, "w"); // create file
29 // delete file
31 var_dump( file_exists($filename) ); // confirm file doesnt exist
36 *** Testing unlink() on a file ***
H A Dftruncate_variation7-win32.phpt13 Description: Truncates a file to a given length
16 /* truncate the file when file pointer is positioned at end of the file */
17 // include common file related test functions
18 include ("file.inc");
22 /* test ftruncate with file opened in different modes */
36 // create 1 file with some contents
39 // fopen the file using the $file_modes
44 // fopen the file using the $file_modes
48 echo "Error: failed to open file $filename!\n";
52 rewind($file_handle); // file pointer to 0
[all …]
H A Dftruncate_variation7.phpt13 Description: Truncates a file to a given length
16 /* truncate the file when file pointer is positioned at end of the file */
17 // include common file related test functions
18 include ("file.inc");
22 /* test ftruncate with file opened in different modes */
36 // create 1 file with some contents
39 // fopen the file using the $file_modes
44 // fopen the file using the $file_modes
48 echo "Error: failed to open file $filename!\n";
52 rewind($file_handle); // file pointer to 0
[all …]
H A Dfwrite_variation2-win32.phpt23 include ("file.inc");
78 /* display the file content, check the file size */
94 -- Opening file in r+ --
111 -- Opening file in r+b --
128 -- Opening file in r+t --
147 -- Opening file in r+ --
164 -- Opening file in r+b --
181 -- Opening file in r+t --
200 -- Opening file in r+ --
217 -- Opening file in r+b --
[all …]
H A Dfwrite_variation2.phpt23 include ("file.inc");
78 /* display the file content, check the file size */
93 -- Opening file in r+ --
110 -- Opening file in r+b --
127 -- Opening file in r+t --
146 -- Opening file in r+ --
163 -- Opening file in r+b --
180 -- Opening file in r+t --
199 -- Opening file in r+ --
216 -- Opening file in r+b --
[all …]
H A Dunlink_variation2.phpt2 Test unlink() function : usage variations - unlink file in use
15 /* Try to unlink file when file handle is still in use */
19 echo "*** Testing unlink() on a file which is in use ***\n";
20 // temp file name used here
23 // create file
27 var_dump( file_exists($filename) ); // confirm file is deleted
28 // now close file handle
34 *** Testing unlink() on a file which is in use ***
H A Dstat_variation6-win32.phpt2 Test stat() functions: usage variations - changing permissions of dir/file
14 * Description: Gives information about a file
17 /* test the effects on the stats of dir/file for changing permissions of dir/file */
21 require "$file_path/file.inc";
24 /* create temp file and directory */
29 $file_handle = fopen($filename, "w"); // temp file
33 // checking stat() on file
34 echo "\n*** Testing stat() on file with miscelleneous file permission and content ***\n";
51 echo "\n*** Testing stat() on directory with miscelleneous file permission ***\n";
79 *** Testing stat() on file with miscelleneous file permission and content ***
[all …]
H A Dfile_basic.phpt2 Test file() function : basic functionality
6 * Prototype: array file ( string filename [,int use-include_path [,resource context]] );
7 * Description: Reads entire file into an array
8 * Returns the file in an array
10 require(dirname(__FILE__) . '/file.inc');
12 echo "*** Testing file() with basic types of files ***\n";
17 print_r( file($file_path."/file_basic1.tmp") );
21 echo "*** Testing for return type of file() function ***\n";
24 $ret_arr = file($file_path."/file_basic1.tmp");
32 *** Testing file() with basic types of files ***
[all …]
H A Dreadfile_variation4.phpt138 file not read
142 file not read
146 file not read
150 file not read
154 file not read
158 file not read
162 file not read
166 file not read
170 file not read
174 file not read
[all …]
H A Dfputcsv_variation13.phpt63 //close the file
69 //delete file
79 -- file opened in r+ --
88 -- file opened in r+b --
97 -- file opened in r+t --
106 -- file opened in a+ --
133 -- file opened in w+ --
160 -- file opened in x+ --
187 -- file opened in r+ --
214 -- file opened in a+ --
[all …]
H A D007_variation10.phpt9 Description: Opens file or URL.
14 Description: Closes an open file pointer
17 /* Test fopen() and fclose(): Opening the file in "r+t" mode,
18 checking for the file creation, write & read operations,
19 checking for the file pointer position,
23 require($file_path."/file.inc");
26 $file = $file_path."/007_variation10.tmp";
30 $file_handle = fopen($file, "r+t"); //opening the file in "r+t" mode
33 var_dump( ftell($file_handle) ); //Initial file pointer position, expected at the begining of the
35 …ell($file_handle) ); //File pointer position after read operation, expected at the end of the file
[all …]
H A D007_variation18.phpt9 Description: Opens file or URL.
14 Description: Closes an open file pointer
17 /* Test fopen() and fclose(): Opening the file in "r+b" mode,
18 checking for the file creation, write & read operations,
19 checking for the file pointer position,
23 require($file_path."/file.inc");
26 $file = $file_path."/007_variation18.tmp";
30 $file_handle = fopen($file, "r+b"); //opening the file in "r+b" mode
33 var_dump( ftell($file_handle) ); //Initial file pointer position, expected at the begining of the
35 …ell($file_handle) ); //File pointer position after read operation, expected at the end of the file
[all …]
H A D007_variation2.phpt9 Description: Opens file or URL.
14 Description: Closes an open file pointer
17 /* Test fopen() and fclose(): Opening the file in "r+" mode,
18 checking for the file creation, write & read operations,
19 checking for the file pointer position,
23 require($file_path."/file.inc");
26 $file = $file_path."/007_variation2.tmp";
30 $file_handle = fopen($file, "r+"); //opening the file in "r+" mode
33 var_dump( ftell($file_handle) ); //Initial file pointer position, expected at the begining of the
35 …ell($file_handle) ); //File pointer position after read operation, expected at the end of the file
[all …]
H A Dfgetcsv_variation13.phpt33 echo "Error: failed to create file $filename!\n";
40 // else rewind the file pointer to begining of the file
45 // rewind the file pointer to bof
55 // check the file pointer position and if eof
59 // close the file
61 //delete file
70 -- Testing fgetcsv() with file opened using r mode --
78 -- Testing fgetcsv() with file opened using rb mode --
86 -- Testing fgetcsv() with file opened using rt mode --
94 -- Testing fgetcsv() with file opened using r+ mode --
[all …]
H A Dfgetcsv_variation20.phpt34 echo "Error: failed to create file $filename!\n";
41 // else rewind the file pointer to begining of the file
46 // rewind the file pointer to bof
57 // check the file pointer position and if eof
61 // close the file
63 //delete file
72 -- Testing fgetcsv() with file opened using r mode --
80 -- Testing fgetcsv() with file opened using rb mode --
88 -- Testing fgetcsv() with file opened using rt mode --
96 -- Testing fgetcsv() with file opened using r+ mode --
[all …]
H A Dfilestat.phpt2 various file stat func tests
24 var_dump(fileinode("/no/such/file/or/dir"));
25 var_dump(fileowner("/no/such/file/or/dir"));
26 var_dump(filegroup("/no/such/file/or/dir"));
27 var_dump(fileatime("/no/such/file/or/dir"));
28 var_dump(filectime("/no/such/file/or/dir"));
49 Warning: fileinode(): stat failed for /no/such/file/or/dir in %s on line %d
52 Warning: fileowner(): stat failed for /no/such/file/or/dir in %s on line %d
55 Warning: filegroup(): stat failed for /no/such/file/or/dir in %s on line %d
58 Warning: fileatime(): stat failed for /no/such/file/or/dir in %s on line %d
[all …]
H A Dlstat_stat_variation21.phpt13 Description: Gives information about a file or symbolic link
16 Description: Gives information about a file
19 /* test the effects of truncate() on stats of a file */
22 require "$file_path/file.inc";
25 /* create temp file */
27 $fp = fopen($filename, "w"); // temp file
30 /* ftruncate the current file and check stat() on the file */
32 echo "*** Testing stat() on file by truncating it to given size ***\n";
37 // opening file in r/w mode
59 *** Testing stat() on file by truncating it to given size ***
H A Dfgetcsv_variation25.phpt50 echo "Error: failed to create file $filename!\n";
65 // else rewind the file pointer to begining of the file
70 // rewind the file pointer to bof
80 // check the file pointer position and if eof
84 // close the file
86 //delete file
96 -- Testing fgetcsv() with file opened using r mode --
103 -- Testing fgetcsv() with file opened using rb mode --
110 -- Testing fgetcsv() with file opened using rt mode --
117 -- Testing fgetcsv() with file opened using r+ mode --
[all …]
H A Dfgetcsv_variation28.phpt50 echo "Error: failed to create file $filename!\n";
65 // else rewind the file pointer to begining of the file
70 // rewind the file pointer to bof
80 // check the file pointer position and if eof
84 // close the file
86 //delete file
96 -- Testing fgetcsv() with file opened using r mode --
103 -- Testing fgetcsv() with file opened using rb mode --
110 -- Testing fgetcsv() with file opened using rt mode --
117 -- Testing fgetcsv() with file opened using r+ mode --
[all …]
H A Dfgetcsv_variation27.phpt50 echo "Error: failed to create file $filename!\n";
65 // else rewind the file pointer to begining of the file
70 // rewind the file pointer to bof
80 // check the file pointer position and if eof
84 // close the file
86 //delete file
96 -- Testing fgetcsv() with file opened using r mode --
103 -- Testing fgetcsv() with file opened using rb mode --
110 -- Testing fgetcsv() with file opened using rt mode --
117 -- Testing fgetcsv() with file opened using r+ mode --
[all …]
/PHP-5.3/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_blobfromsteam.phpt14 $fp = fopen($file, 'w');
24 if (!file_exists($file))
27 unlink($file);
35 @unlink($file);
37 if (file_exists($file)) {
42 $fp = fopen($file, 'w');
44 printf("[%03d + 2] Cannot create test file '%s'\n", $offset, $file);
50 if (!file_exists($file)) {
51 printf("[%03d + 3] Failed to create test file '%s'\n", $offset, $file);
64 $fp = fopen($file, 'r');
[all …]
/PHP-5.3/ext/bcmath/libbcmath/
H A Dmissing114 file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
115 if test -z "$file"; then
116 file=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
117 file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $file`
119 touch $file
/PHP-5.3/ext/standard/tests/dir/
H A Dreaddir_basic.phpt16 // include the file.inc for Function: function create_files()
18 include(dirname(__FILE__)."/../file/file.inc");
27 while( FALSE !== ($file = readdir($dh)) ) {
28 $a[] = $file;
31 foreach($a as $file) {
32 var_dump($file);
38 while( FALSE !== ( $file = readdir() ) ) {
39 $a[] = $file;
42 foreach($a as $file) {
43 var_dump($file);
/PHP-5.3/ext/standard/tests/general_functions/
H A Dbug40752.phpt6 $file = dirname(__FILE__)."/bug40752.ini";
7 file_put_contents($file, '
12 var_dump(parse_ini_file($file));
14 file_put_contents($file, '
19 var_dump(parse_ini_file($file));
21 unlink($file);
/PHP-5.3/ext/standard/tests/image/
H A Dimage_type_to_mime_type.phpt14 while (($file = readdir($dir)) !== FALSE) {
15 if (preg_match('/^test.+pix\./',$file) && $file != "test13pix.swf") {
16 $files[] = $file;
21 foreach($files as $file) {
22 $result[$file] = getimagesize(dirname(__FILE__)."/$file");
23 $result[$file] = image_type_to_mime_type($result[$file][2]);

Completed in 68 milliseconds

12345678910>>...76