Home
last modified time | relevance | path

Searched refs:wb (Results 1 – 25 of 128) sorted by relevance

123456

/PHP-7.1/ext/standard/tests/file/
H A D007_variation19.phpt2 Test fopen and fclose() functions - usage variations - "wb" mode
17 /* Test fopen() and fclose(): Opening the file in "wb" mode,
20 checking for the file truncation when trying to open an existing file in "wb" mode,
26 create_files($file_path, 1, "text_with_new_line", 0755, 20, "wb", "007_variation", 19, "bytes");
30 echo "*** Test fopen() & fclose() functions: with 'wb' mode ***\n";
31 $file_handle = fopen($file, "wb"); //opening the file "wb" mode
43 var_dump( filesize($file) ); //Check for size of existing data file before opening the file in "wb
45 fclose( fopen($file, "wb") ); //Opening the existing data file again in "wb" mode
46 var_dump( filesize($file) ); //Check for size of existing data file after opening the file in "wb"…
50 fclose( fopen($file, "wb") ); //Opening the non-existing file in "wb" mode, which will be created
[all …]
H A Dstream_enclosed.phpt8 $s = fopen('php://temp/maxmemory=1024','wb+');
10 $t = fopen('php://temp/maxmemory=1024','wb+');
H A Dphp_fd_wrapper_01.phpt5 $f = fopen("php://fd/1", "wb");
H A Dfgetc_variation3.phpt11 w, wb, wt,
20 $file_modes = array("w", "wb", "wt", "a", "ab", "at", "x", "xb", "xt");
61 -- File opened in mode : wb --
H A Dfgets_variation1.phpt10 w, wb, wt,
19 $file_modes = array("w", "wb", "wt", "a", "ab", "at", "x", "xb", "xt");
60 -- File opened in mode : wb --
H A Dfgetcsv_variation26.phpt32 $file_modes = array ("w", "wb", "wt",
87 -- Testing fgetcsv() with file opened using wb mode --
132 -- Testing fgetcsv() with file opened using wb mode --
177 -- Testing fgetcsv() with file opened using wb mode --
222 -- Testing fgetcsv() with file opened using wb mode --
267 -- Testing fgetcsv() with file opened using wb mode --
312 -- Testing fgetcsv() with file opened using wb mode --
357 -- Testing fgetcsv() with file opened using wb mode --
402 -- Testing fgetcsv() with file opened using wb mode --
H A Dfwrite_basic-win32-mb.phpt24 test fwrite with file opened in mode : w,wb,wt,w+,w+b,w+t
27 $file_modes = array( "w", "wb", "wt", "w+", "w+b", "w+t");
96 -- File opened in mode : wb --
182 -- File opened in mode : wb --
268 -- File opened in mode : wb --
354 -- File opened in mode : wb --
H A Dfwrite_basic-win32.phpt24 test fwrite with file opened in mode : w,wb,wt,w+,w+b,w+t
27 $file_modes = array( "w", "wb", "wt", "w+", "w+b", "w+t");
96 -- File opened in mode : wb --
182 -- File opened in mode : wb --
268 -- File opened in mode : wb --
354 -- File opened in mode : wb --
H A Dfwrite_basic.phpt24 test fwrite with file opened in mode : w,wb,wt,w+,w+b,w+t
27 $file_modes = array( "w", "wb", "wt", "w+", "w+b", "w+t");
96 -- File opened in mode : wb --
182 -- File opened in mode : wb --
268 -- File opened in mode : wb --
354 -- File opened in mode : wb --
/PHP-7.1/ext/standard/tests/general_functions/
H A Dbug44667.phpt2 Bug #44667 (proc_open() does not handle pipes with the mode 'wb' correctly)
12 1 => array('pipe', 'wb'),
/PHP-7.1/ext/standard/tests/filters/
H A Dfilter_errors.inc18 $stream = fopen('php://memory', 'wb+');
28 $stream = fopen('php://memory', 'wb+');
/PHP-7.1/ext/standard/tests/image/
H A Dbug70096.phpt17 $fp = fopen($filename, "wb");
21 $fp = fopen($filename, "wb");
/PHP-7.1/ext/standard/tests/streams/
H A Dproc_open_bug51800_right.phpt16 1 => array("pipe", "wb"), // stdout
17 2 => array("pipe", "wb") // stderr
H A Dproc_open_bug51800_right2.phpt16 1 => array("pipe", "wb"), // stdout
17 2 => array("pipe", "wb") // stderr
H A Dbug47997.phpt9 $out = fopen('php://memory', 'wb+');
H A Dproc_open_bug51800.phpt32 1 => array("pipe", "wb"), // stdout
33 2 => array("pipe", "wb") // stderr
H A Dstream_get_meta_data_file_variation1.phpt8 'rb', 'rb+', 'wb', 'wb+', 'ab', 'ab+', 'xb', 'xb+',
243 string(2) "wb"
263 string(3) "wb+"
/PHP-7.1/ext/zlib/tests/
H A Dgzreadgzwrite.phpt11 $fp = gzopen($filename, "wb");
/PHP-7.1/ext/mcrypt/tests/
H A Dbug72535.phpt17 $fp = fopen('php://memory', 'wb+');
/PHP-7.1/ext/gd/tests/
H A Dimageloadfont_invalid.phpt11 $fp = fopen($filename, 'wb');
/PHP-7.1/ext/phar/tests/
H A Dopen_for_write_existing.phpt20 $fp = fopen($pname . '/b/c.php', 'wb');
/PHP-7.1/ext/curl/tests/
H A Dbug52827.phpt13 $s = fopen('php://temp/maxmemory=1024','wb+');
/PHP-7.1/ext/standard/tests/file/windows_mb_path/
H A Dtest_long_path_bug30730.phpt21 $fp = fopen($file, 'wb+');
/PHP-7.1/ext/phar/tests/tar/
H A Dopen_for_write_existing.phpt29 $fp = fopen($alias . '/b/c.php', 'wb');
/PHP-7.1/ext/phar/tests/zip/
H A Dopen_for_write_existing.phpt28 $fp = fopen($alias . '/b/c.php', 'wb');

Completed in 33 milliseconds

123456