Home
last modified time | relevance | path

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

12345678910>>...83

/PHP-7.1/ext/standard/tests/file/
H A Dfgetcsv_variation21.phpt34 echo "Error: failed to create file $filename!\n";
41 // else rewind the file pointer to beginning 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 Dfgetss_variation1-win32.phpt22 // include the common file related test functions
23 include ("file.inc");
55 echo "Error: failed to open file $filename!\n";
59 // rewind the file pointer to beginning of the file
65 /* read entire file and strip tags */
71 // close the file
74 // delete the file
83 -- Testing fgetss() with file opened using w mode --
93 -- Testing fgetss() with file opened using wb mode --
113 -- Testing fgetss() with file opened using a mode --
[all …]
H A Dfgetss_variation1.phpt22 // include the common file related test functions
23 include ("file.inc");
51 echo "Error: failed to open file $filename!\n";
55 // rewind the file pointer to beginning of the file
61 /* read entire file and strip tags */
67 // close the file
70 // delete the file
79 -- Testing fgetss() with file opened using w mode --
89 -- Testing fgetss() with file opened using wb mode --
109 -- Testing fgetss() with file opened using a mode --
[all …]
H A Dfnmatch_basic.phpt15 echo "*** Testing fnmatch() with file ***\n";
16 $file = basename(__FILE__);
18 var_dump( fnmatch("*.php", $file) );
19 var_dump( fnmatch("*.p*p", $file) );
20 var_dump( fnmatch("*.p*", $file) );
21 var_dump( fnmatch("*", $file) );
22 var_dump( fnmatch("**", $file) );
23 var_dump( fnmatch("*.phpt", $file) );
25 echo "*** Testing fnmatch() with other than file ***\n";
35 *** Testing fnmatch() with file ***
[all …]
H A Dbug45985.phpt2 Bug #35740 (touch() opened file raises a warning)
5 $file = __DIR__ . '/' . '__tmp_35740.dat';
6 file_put_contents($file, 'test');
7 $f = fopen($file, 'r');
8 touch($file);
10 @unlink($file);
H A Dbug75679.phpt12 foreach ($Files2Report as $file => &$Report)
14 $Report = ['strlen' => strlen ($file), 'result' => 'nok'];
16 if (! is_dir (dirname ($file))) mkdir (dirname ($file), 0777, true);
17 if (copy (__FILE__, $file) && is_file ($file))
37 foreach ($Files2Report as $file => &$Report)
39 if (is_file($file)) {
40 unlink($file);
43 $d1 = dirname($file);
H A Dfile_variation5.phpt2 file() with various paths
23 echo "file() on a path containing .. and .\n";
24 var_dump(file("./$test_dirname/../$filename"));
27 var_dump(file("./$test_dirname/bad_dir/../../$filename"));
29 echo "\nfile() on a linked file\n";
32 var_dump(file($linkname));
37 var_dump(file("../$filename"));
46 file() on a path containing .. and .
58 file() on a path containing .. with invalid directories
70 file() on a linked file
[all …]
H A Dlstat_stat_variation4.phpt2 Test lstat() and stat() functions: usage variations - effects of touch() on file
13 Description: Gives information about a file or symbolic link
16 Description: Gives information about a file
19 /* test the effects of touch() on stats of file */
22 require "$file_path/file.inc";
25 /* create temp file */
28 $fp = fopen($file_name, "w"); // temp file
31 // touch a file check stat, there should be difference in atime
32 echo "*** Testing stat() for file after using touch() on the file ***\n";
58 *** Testing stat() for file after using touch() on the file ***
H A Dstat_variation2-win32.phpt2 Test stat() functions: usage variations - effects of writing to file
14 * Description: Gives information about a file
17 /* test the effects of writing to a file on the stats of the file */
21 require "$file_path/file.inc";
25 $file_handle = fopen($filename, "w"); // temp file
29 echo "*** Testing stat(): writing to a file ***\n";
31 // writing to an empty file
32 echo "-- Testing stat() on file after data is written in it --\n";
36 $file_handle = fopen($filename, "w"); // temp file
57 *** Testing stat(): writing to a file ***
[all …]
H A D007_variation15.phpt9 Description: Opens file or URL.
14 Description: Closes an open file pointer
17 /* Test fopen() and fclose(): Opening the file in "xt" mode,
18 checking for the file creation, write & read operations,
19 checking for the file pointer position,
20 checking for the warning msg when trying to open an existing file in "xt" mode,
25 $file = $file_path."/007_variation15.tmp";
28 $file_handle = fopen($file, "xt"); //opening the non-existing file in "xt" mode, file will be crea…
31 var_dump( ftell($file_handle) ); //Initial file pointer position, expected at the beginning of the…
37 var_dump( fclose($file_handle) ); //Check for close operation on the file handle
[all …]
H A Dfgetc_variation1.phpt2 Test fgetc() function : usage variations - read when file pointer at EOF
7 Description: Gets character from file pointer
10 include ("file.inc");
13 echo "-- Testing fgetc() with file whose file pointer is pointing to EOF --\n";
14 // create a file
19 // loop to check the file opened in different read modes
25 // open the file
28 echo "Error: failed to open file $filename! \n";
32 // seek to end of the file and try fgetc()
40 // close the file handle
[all …]
H A D007_variation23.phpt9 Description: Opens file or URL.
14 Description: Closes an open file pointer
17 /* Test fopen() and fclose(): Opening the file in "xb" mode,
18 checking for the file creation, write & read operations,
19 checking for the file pointer position,
20 checking for the warning msg when trying to open an existing file in "xb" mode,
25 $file = $file_path."/007_variation23.tmp";
28 $file_handle = fopen($file, "xb"); //opening the non-existing file in "xb" mode, file will be crea…
31 var_dump( ftell($file_handle) ); //Initial file pointer position, expected at the beginning of the…
37 var_dump( fclose($file_handle) ); //Check for close operation on the file handle
[all …]
H A D007_variation7.phpt9 Description: Opens file or URL.
14 Description: Closes an open file pointer
17 /* Test fopen() and fclose(): Opening the file in "x" mode,
18 checking for the file creation, write & read operations,
19 checking for the file pointer position,
20 checking for the warning msg when trying to open an existing file in "x" mode,
25 $file = $file_path."/007_variation7.tmp";
28 $file_handle = fopen($file, "x"); //opening the non-existing file in "x" mode, file will be created
31 var_dump( ftell($file_handle) ); //Initial file pointer position, expected at the beginning of the…
37 var_dump( fclose($file_handle) ); //Check for close operation on the file handle
[all …]
H A Dunlink_variation1-win32-mb.phpt2 Test unlink() function : usage variations - unlinking file in a directory
28 echo "\n*** Testing unlink() on file inside a directory ***\n";
31 // create temp file inside $dirname
41 var_dump( file_exists($filename) ); // confirm file is deleted
51 // create the temp file
55 // remove write permission from file
58 // now try deleting temp file inside $dirname
61 // reassign write permission to temp file
63 // delete temp file
65 var_dump( file_exists($filename) ); // confirm file is deleted
[all …]
H A Dunlink_variation1-win32.phpt2 Test unlink() function : usage variations - unlinking file in a directory
27 echo "\n*** Testing unlink() on file inside a directory ***\n";
30 // create temp file inside $dirname
40 var_dump( file_exists($filename) ); // confirm file is deleted
50 // create the temp file
54 // remove write permission from file
57 // now try deleting temp file inside $dirname
60 // reassign write permission to temp file
62 // delete temp file
64 var_dump( file_exists($filename) ); // confirm file is deleted
[all …]
H A Dunlink_variation4.phpt2 Test unlink() function : usage variations - unlink deleted file
9 /* Try deleting a file which is already deleted */
13 // temp file used
16 echo "*** Testing unlink() on deleted file ***\n";
17 // create temp file
21 // delete temp file
23 var_dump( file_exists($filename) ); // confirm file deleted
25 // delete deleted file
31 *** Testing unlink() on deleted file ***
H A Dfgetcsv_variation14.phpt32 echo "Error: failed to create file $filename!\n";
39 // else rewind the file pointer to beginning of the file
44 // rewind the file pointer to bof
55 // check the file pointer position and if eof
60 // check the file pointer position and if eof
64 // close the file
66 //delete file
75 -- Testing fgetcsv() with file opened using r mode --
86 -- Testing fgetcsv() with file opened using rb mode --
97 -- Testing fgetcsv() with file opened using rt mode --
[all …]
H A Dfputcsv_variation2.phpt62 //close the file
68 //delete file
78 -- file opened in r+ --
86 -- file opened in r+b --
94 -- file opened in r+t --
102 -- file opened in a+ --
126 -- file opened in w+ --
150 -- file opened in x+ --
174 -- file opened in r+ --
198 -- file opened in a+ --
[all …]
H A Dfputcsv_variation4.phpt62 //close the file
68 //delete file
78 -- file opened in r+ --
86 -- file opened in r+b --
94 -- file opened in r+t --
102 -- file opened in a+ --
126 -- file opened in w+ --
150 -- file opened in x+ --
174 -- file opened in r+ --
198 -- file opened in a+ --
[all …]
H A Dfputcsv_variation3.phpt62 //close the file
68 //delete file
78 -- file opened in r+ --
86 -- file opened in r+b --
94 -- file opened in r+t --
102 -- file opened in a+ --
126 -- file opened in w+ --
150 -- file opened in x+ --
174 -- file opened in r+ --
198 -- file opened in a+ --
[all …]
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 D007_variation16.phpt9 Description: Opens file or URL.
14 Description: Closes an open file pointer
17 /* Test fopen() and fclose(): Opening the file in "x+t" mode,
18 checking for the file creation, write & read operations,
19 checking for the file pointer position,
20 checking for the warning msg when trying to open an existing file in "x+t" mode,
25 $file = $file_path."/007_variation16.tmp";
28 $file_handle = fopen($file, "x+t"); //opening the non-existing file in "x+t" mode, file will be cr…
31 var_dump( ftell($file_handle) ); //Initial file pointer position, expected at the beginning of the…
37 var_dump( fclose($file_handle) ); //Check for close operation on the file handle
[all …]
/PHP-7.1/ext/standard/tests/general_functions/
H A Dbug41445.phpt6 $file = dirname(__FILE__)."/bug41445.ini";
16 file_put_contents($file, $data);
18 var_dump(parse_ini_file($file, TRUE));
19 var_dump(parse_ini_file($file));
29 file_put_contents($file, $data);
31 var_dump(parse_ini_file($file, TRUE));
32 var_dump(parse_ini_file($file));
34 @unlink($file);
/PHP-7.1/Zend/tests/
H A Ddebug_backtrace_limit.phpt27 [file] => %sdebug_backtrace_limit.php
41 [file] => %sdebug_backtrace_limit.php
52 [file] => %sdebug_backtrace_limit.php
66 [file] => %sdebug_backtrace_limit.php
77 [file] => %sdebug_backtrace_limit.php
88 [file] => %sdebug_backtrace_limit.php
102 [file] => %sdebug_backtrace_limit.php
113 [file] => %sdebug_backtrace_limit.php
124 [file] => %sdebug_backtrace_limit.php
/PHP-7.1/ext/openssl/tests/
H A Dopenssl_error_string_basic.phpt40 // common output file
44 // invalid file for is the test dir as writting file to existing dir should alway fail
46 // crt file
48 // csr file
50 // public key file
52 // private key file
87 // file for pkey (file:///) fails when opennig (BIO_new_file)
93 // file to export cannot be written
115 // file for x509 (file:///) fails when opennig (BIO_new_file)
121 // file to export cannot be written
[all …]

Completed in 83 milliseconds

12345678910>>...83