Home
last modified time | relevance | path

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

12345

/php-src/tests/output/
H A Dstream_isatty.inc10 '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 Dsapi_windows_vt100_support.inc33 '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-src/ext/standard/tests/file/
H A D007_variation19.phpt2 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 Dpopen_pclose_error.phpt26 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 Dstream_enclosed.phpt7 $s = fopen('php://temp/maxmemory=1024','wb+');
9 $t = fopen('php://temp/maxmemory=1024','wb+');
H A Dphp_fd_wrapper_01.phpt5 $f = fopen("php://fd/1", "wb");
H A Dfwrite_basic-win32-mb.phpt16 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 Dfwrite_basic-win32.phpt16 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 Dfwrite_basic.phpt16 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-src/ext/pdo_pgsql/tests/
H A Dgh9411.phpt21 var_dump($lob = $db->pgsqlLOBOpen($oid, 'wb'));
28 var_dump($lob = $db->pgsqlLOBOpen($oid, 'wb'));
34 var_dump($lob = $db->pgsqlLOBOpen($oid, 'wb'));
/php-src/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-src/ext/standard/tests/image/
H A Dbug70096.phpt18 $fp = fopen($filename, "wb");
22 $fp = fopen($filename, "wb");
/php-src/ext/standard/tests/filters/
H A Dfilter_errors.inc18 $stream = fopen('php://memory', 'wb+');
28 $stream = fopen('php://memory', 'wb+');
H A Dbug81475.phpt5 $stdout = fopen('php://stdout', 'wb');
H A Dbug81294.phpt7 $f = fopen(__DIR__ . "/bug81294.txt", "wb+");
/php-src/ext/gd/tests/
H A Dimageloadfont_end_of_file_while_reading_header.phpt14 $fp = fopen($filename, 'wb');
21 $fp = fopen($filename, 'wb');
/php-src/ext/standard/tests/streams/
H A Dproc_open_bug51800_right.phpt22 1 => array("pipe", "wb"), // stdout
23 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 Dbug78506.phpt23 var_dump(stream_copy_to_stream($source_resource, fopen('php://memory', 'wb')));
/php-src/ext/spl/tests/
H A DSplTempFileObject_constructor_basic.phpt14 string(2) "wb"
H A DSplTempFileObject_constructor_memory_lt1_variation.phpt14 string(2) "wb"
H A DSplTempFileObject_constructor_maxmemory_basic.phpt14 string(2) "wb"
/php-src/ext/bz2/tests/
H A Dbug81092.phpt7 $stream = fopen(__DIR__ . "/81092.bz2", 'wb+');
/php-src/ext/zlib/tests/
H A Dgzreadgzwrite.phpt10 $fp = gzopen($filename, "wb");

Completed in 38 milliseconds

12345