/PHP-7.3/tests/output/ |
H A D | stream_isatty.inc | 10 'STDOUT (fopen)' => fopen('php://stdout', 'wb'), 11 'STDOUT (php://fd/1)' => fopen('php://fd/1', 'wb'), 13 'STDERR (fopen)' => fopen('php://stderr', 'wb'), 14 'STDERR (php://fd/2)' => fopen('php://fd/2', 'wb'), 16 'Invalid stream (php://temp)' => fopen('php://temp', 'wb'), 17 'Invalid stream (php://input)' => fopen('php://input', 'wb'), 18 'Invalid stream (php://memory)' => fopen('php://memory', 'wb'),
|
H A D | sapi_windows_vt100_support.inc | 33 'STDOUT (fopen)' => fopen('php://stdout', 'wb'), 34 'STDOUT (php://fd/1)' => fopen('php://fd/1', 'wb'), 36 'STDERR (fopen)' => fopen('php://stderr', 'wb'), 37 'STDERR (php://fd/2)' => fopen('php://fd/2', 'wb'), 39 'Invalid stream (php://temp)' => fopen('php://temp', 'wb'), 40 'Invalid stream (php://input)' => fopen('php://input', 'wb'), 41 'Invalid stream (php://memory)' => fopen('php://memory', 'wb'),
|
/PHP-7.3/ext/standard/tests/file/ |
H A D | 007_variation19.phpt | 2 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 D | stream_enclosed.phpt | 8 $s = fopen('php://temp/maxmemory=1024','wb+'); 10 $t = fopen('php://temp/maxmemory=1024','wb+');
|
H A D | php_fd_wrapper_01.phpt | 5 $f = fopen("php://fd/1", "wb");
|
H A D | fgetc_variation3.phpt | 11 w, wb, wt, 20 $file_modes = array("w", "wb", "wt", "a", "ab", "at", "x", "xb", "xt"); 61 -- File opened in mode : wb --
|
H A D | fgets_variation1.phpt | 10 w, wb, wt, 19 $file_modes = array("w", "wb", "wt", "a", "ab", "at", "x", "xb", "xt"); 60 -- File opened in mode : wb --
|
H A D | fgetcsv_variation26.phpt | 32 $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 D | fwrite_basic-win32-mb.phpt | 24 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 D | fwrite_basic-win32.phpt | 24 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 D | fwrite_basic.phpt | 24 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.3/ext/standard/tests/general_functions/ |
H A D | bug44667.phpt | 2 Bug #44667 (proc_open() does not handle pipes with the mode 'wb' correctly) 12 1 => array('pipe', 'wb'),
|
/PHP-7.3/ext/standard/tests/filters/ |
H A D | filter_errors.inc | 18 $stream = fopen('php://memory', 'wb+'); 28 $stream = fopen('php://memory', 'wb+');
|
/PHP-7.3/ext/standard/tests/image/ |
H A D | bug70096.phpt | 17 $fp = fopen($filename, "wb"); 21 $fp = fopen($filename, "wb");
|
/PHP-7.3/ext/standard/tests/streams/ |
H A D | proc_open_bug51800_right.phpt | 16 1 => array("pipe", "wb"), // stdout 17 2 => array("pipe", "wb") // stderr
|
H A D | bug47997.phpt | 9 $out = fopen('php://memory', 'wb+');
|
H A D | proc_open_bug51800_right2.phpt | 16 1 => array("pipe", "wb"), // stdout 17 2 => array("pipe", "wb") // stderr
|
H A D | proc_open_bug51800.phpt | 32 1 => array("pipe", "wb"), // stdout 33 2 => array("pipe", "wb") // stderr
|
H A D | stream_get_meta_data_file_variation1.phpt | 8 'rb', 'rb+', 'wb', 'wb+', 'ab', 'ab+', 'xb', 'xb+', 243 string(2) "wb" 263 string(3) "wb+"
|
/PHP-7.3/ext/zlib/tests/ |
H A D | gzreadgzwrite.phpt | 11 $fp = gzopen($filename, "wb");
|
H A D | gzreadgzwriteplain.phpt | 11 $fp = fopen($filename, "wb");
|
/PHP-7.3/ext/gd/tests/ |
H A D | imageloadfont_invalid.phpt | 11 $fp = fopen($filename, 'wb');
|
/PHP-7.3/ext/phar/tests/ |
H A D | open_for_write_existing.phpt | 20 $fp = fopen($pname . '/b/c.php', 'wb');
|
/PHP-7.3/ext/standard/tests/file/windows_mb_path/ |
H A D | test_long_path_bug30730.phpt | 21 $fp = fopen($file, 'wb+');
|
/PHP-7.3/ext/curl/tests/ |
H A D | bug52827.phpt | 13 $s = fopen('php://temp/maxmemory=1024','wb+');
|