Home
last modified time | relevance | path

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

12345

/PHP-5.3/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 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.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 --
H A Dfeof_basic.phpt15 $h = fopen($tmpFile1, 'wb');
38 $h = fopen($tmpFile2, 'wb+');
/PHP-5.3/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-5.3/ext/standard/tests/filters/
H A Dfilter_errors.inc18 $stream = fopen('php://memory', 'wb+');
28 $stream = fopen('php://memory', 'wb+');
H A Dfilter_errors_user.phpt54 $stream = fopen('php://memory', 'wb+');
63 $stream = fopen('php://memory', 'wb+');
77 $stream = fopen('php://memory', 'wb+');
/PHP-5.3/ext/standard/tests/streams/
H A Dbug47997.phpt9 $out = fopen('php://memory', 'wb+');
H A Dstream_get_meta_data_file_variation1.phpt8 'rb', 'rb+', 'wb', 'wb+', 'ab', 'ab+', 'xb', 'xb+',
237 string(2) "wb"
257 string(3) "wb+"
/PHP-5.3/ext/zlib/tests/
H A Dgzreadgzwrite.phpt11 $fp = gzopen($filename, "wb");
H A Dbug_40189.phpt12 $gp = fopen(dirname(__FILE__) . '/test.other', 'wb');
H A Dgzreadgzwriteplain.phpt11 $fp = fopen($filename, "wb");
/PHP-5.3/ext/mcrypt/tests/
H A Dmcrypt_filters.phpt21 $fp = fopen($secretfile, 'wb');
/PHP-5.3/ext/phar/tests/
H A Dopen_for_write_existing.phpt20 $fp = fopen($pname . '/b/c.php', 'wb');
H A Dopen_for_write_newfile.phpt20 $fp = fopen($pname . '/b/new.php', 'wb');
/PHP-5.3/ext/gd/tests/
H A Dimageloadfont_invalid.phpt12 $fp = fopen($filename, 'wb');
/PHP-5.3/ext/curl/tests/
H A Dbug52827.phpt13 $s = fopen('php://temp/maxmemory=1024','wb+');
/PHP-5.3/ext/phar/tests/tar/
H A Dopen_for_write_existing.phpt29 $fp = fopen($alias . '/b/c.php', 'wb');
H A Dopen_for_write_newfile.phpt29 $fp = fopen($alias . '/b/new.php', 'wb');
/PHP-5.3/ext/phar/tests/zip/
H A Dopen_for_write_existing.phpt28 $fp = fopen($alias . '/b/c.php', 'wb');
H A Dopen_for_write_newfile.phpt28 $fp = fopen($alias . '/b/new.php', 'wb');

Completed in 48 milliseconds

12345