/PHP-7.4/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.4/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 | 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 --
|
H A D | fgetc_variation3.phpt | 11 w, wb, wt, 20 $file_modes = array("w", "wb", "wt", "a", "ab", "at", "x", "xb", "xt"); 63 -- 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"); 62 -- File opened in mode : wb --
|
/PHP-7.4/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.4/ext/standard/tests/filters/ |
H A D | filter_errors.inc | 18 $stream = fopen('php://memory', 'wb+'); 28 $stream = fopen('php://memory', 'wb+');
|
H A D | bug81475.phpt | 5 $stdout = fopen('php://stdout', 'wb');
|
H A D | bug81294.phpt | 9 $f = fopen(__DIR__ . "/bug81294.txt", "wb+");
|
/PHP-7.4/ext/standard/tests/image/ |
H A D | bug70096.phpt | 17 $fp = fopen($filename, "wb"); 21 $fp = fopen($filename, "wb");
|
/PHP-7.4/ext/gd/tests/ |
H A D | imageloadfont_end_of_file_while_reading_header.phpt | 16 $fp = fopen($filename, 'wb'); 23 $fp = fopen($filename, 'wb');
|
H A D | imageloadfont_invalid.phpt | 11 $fp = fopen($filename, 'wb');
|
/PHP-7.4/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 | bug78506.phpt | 23 var_dump(stream_copy_to_stream($source_resource, fopen('php://memory', 'wb')));
|
H A D | proc_open_bug51800.phpt | 32 1 => array("pipe", "wb"), // stdout 33 2 => array("pipe", "wb") // stderr
|
/PHP-7.4/ext/bz2/tests/ |
H A D | bug81092.phpt | 9 $stream = fopen(__DIR__ . "/81092.bz2", 'wb+');
|
/PHP-7.4/ext/zlib/tests/ |
H A D | gzreadgzwrite.phpt | 11 $fp = gzopen($filename, "wb");
|
/PHP-7.4/ext/phar/tests/ |
H A D | open_for_write_existing.phpt | 20 $fp = fopen($pname . '/b/c.php', 'wb');
|