/PHP-8.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'), 15 'Invalid stream (php://temp)' => fopen('php://temp', 'wb'), 16 'Invalid stream (php://input)' => fopen('php://input', 'wb'), 17 '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'), 38 'Invalid stream (php://temp)' => fopen('php://temp', 'wb'), 39 'Invalid stream (php://input)' => fopen('php://input', 'wb'), 40 'Invalid stream (php://memory)' => fopen('php://memory', 'wb'),
|
/PHP-8.3/ext/standard/tests/file/ |
H A D | 007_variation19.phpt | 2 Test fopen and fclose() functions - usage variations - "wb" mode 6 /* Test fopen() and fclose(): Opening the file in "wb" mode, 9 checking for the file truncation when trying to open an existing file in "wb" mode, 15 create_files($file_path, 1, "text_with_new_line", 0755, 20, "wb", "007_variation", 19, "bytes"); 19 echo "*** Test fopen() & fclose() functions: with 'wb' mode ***\n"; 20 $file_handle = fopen($file, "wb"); //opening the file "wb" mode 32 var_dump( filesize($file) ); //Check for size of existing data file before opening the file in "wb… 34 fclose( fopen($file, "wb") ); //Opening the existing data file again in "wb" mode 35 var_dump( filesize($file) ); //Check for size of existing data file after opening the file in "wb"… 39 fclose( fopen($file, "wb") ); //Opening the non-existing file in "wb" mode, which will be created [all …]
|
H A D | popen_pclose_error.phpt | 26 popen(): Argument #2 ($mode) must be one of "r", "rb", "w", or "wb" 27 popen(): Argument #2 ($mode) must be one of "r", "rb", "w", or "wb" 28 popen(): Argument #2 ($mode) must be one of "r", "rb", "w", or "wb"
|
H A D | stream_enclosed.phpt | 7 $s = fopen('php://temp/maxmemory=1024','wb+'); 9 $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 | 16 test fwrite with file opened in mode : w,wb,wt,w+,w+b,w+t 19 $file_modes = array( "w", "wb", "wt", "w+", "w+b", "w+t"); 88 -- File opened in mode : wb -- 174 -- File opened in mode : wb -- 260 -- File opened in mode : wb -- 346 -- File opened in mode : wb --
|
H A D | fwrite_basic-win32.phpt | 16 test fwrite with file opened in mode : w,wb,wt,w+,w+b,w+t 19 $file_modes = array( "w", "wb", "wt", "w+", "w+b", "w+t"); 88 -- File opened in mode : wb -- 174 -- File opened in mode : wb -- 260 -- File opened in mode : wb -- 346 -- File opened in mode : wb --
|
H A D | fwrite_basic.phpt | 16 test fwrite with file opened in mode : w,wb,wt,w+,w+b,w+t 19 $file_modes = array( "w", "wb", "wt", "w+", "w+b", "w+t"); 88 -- File opened in mode : wb -- 174 -- File opened in mode : wb -- 260 -- File opened in mode : wb -- 346 -- File opened in mode : wb --
|
/PHP-8.3/ext/pdo_pgsql/tests/ |
H A D | gh9411.phpt | 21 var_dump($lob = $db->pgsqlLOBOpen($oid, 'wb')); 28 var_dump($lob = $db->pgsqlLOBOpen($oid, 'wb')); 34 var_dump($lob = $db->pgsqlLOBOpen($oid, 'wb'));
|
/PHP-8.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-8.3/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 | 7 $f = fopen(__DIR__ . "/bug81294.txt", "wb+");
|
/PHP-8.3/ext/standard/tests/image/ |
H A D | bug70096.phpt | 18 $fp = fopen($filename, "wb"); 22 $fp = fopen($filename, "wb");
|
/PHP-8.3/ext/gd/tests/ |
H A D | imageloadfont_end_of_file_while_reading_header.phpt | 14 $fp = fopen($filename, 'wb'); 21 $fp = fopen($filename, 'wb');
|
/PHP-8.3/ext/standard/tests/streams/ |
H A D | bug47997.phpt | 9 $out = fopen('php://memory', 'wb+');
|
H A D | proc_open_bug51800_right.phpt | 22 1 => array("pipe", "wb"), // stdout 23 2 => array("pipe", "wb") // stderr
|
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')));
|
/PHP-8.3/ext/spl/tests/ |
H A D | SplTempFileObject_constructor_basic.phpt | 14 string(2) "wb"
|
H A D | SplTempFileObject_constructor_memory_lt1_variation.phpt | 14 string(2) "wb"
|
H A D | SplTempFileObject_constructor_maxmemory_basic.phpt | 14 string(2) "wb"
|
/PHP-8.3/ext/bz2/tests/ |
H A D | bug81092.phpt | 7 $stream = fopen(__DIR__ . "/81092.bz2", 'wb+');
|
/PHP-8.3/ext/zlib/tests/ |
H A D | gzreadgzwrite.phpt | 10 $fp = gzopen($filename, "wb");
|