Home
last modified time | relevance | path

Searched refs:write (Results 26 – 50 of 532) sorted by relevance

12345678910>>...22

/PHP-7.4/ext/standard/tests/streams/
H A Dstream_select_preserve_keys.phpt7 $write = NULL;
11 stream_select($read, $write, $except, 0);
14 stream_select($read, $write, $except, 0); // // emulate_read
H A Dstream_set_chunk_size.phpt17 echo "write with size: ", strlen($data), "\n";
63 write with size: 1
64 write with size: 1
65 write with size: 1
78 write with size: 100
79 write with size: 100
80 write with size: 50
H A Dbug53427.phpt7 $write = NULL;
12 stream_select($read, $write, $except, 0);
/PHP-7.4/ext/oci8/tests/
H A Dlob_002.phpt29 var_dump($blob->write("test", -1));
30 var_dump($blob->write("test", "str"));
31 var_dump($blob->write("test", 1000000));
32 var_dump($blob->write(str_repeat("test", 10000), 1000000));
65 Warning: OCI-Lob::write() expects parameter 2 to be int%s string given in %slob_002.php on line %d
H A Dlob_032.phpt26 oci_commit($c); // This will cause subsequent ->write() to fail
27 $clob->write("data");
35 Warning: OCI-Lob::write(): ORA-22990: %s in %s on line 19
H A Dlob_021.phpt26 var_dump($blob->write("test"));
28 var_dump($blob->write("test"));
30 var_dump($blob->write("test"));
58 Warning: OCI-Lob::write(): %s is not a valid oci8 descriptor resource in %s on line %d
/PHP-7.4/ext/session/tests/
H A Dsession_set_save_handler_error2.phpt13 …t_save_handler(callback $open, callback $close, callback $read, callback $write, callback $destroy…
23 function write($id, $session_data) { }
27 session_set_save_handler("open", "close", "read", "write", "destroy", "gc");
37 session_set_save_handler("open", "close", "read", "write", "destroy", "gc");
H A Dbug71162.phpt9 Current session module is designed to write empty session always. In addition, current session modu…
26 public function write($sessid, $sessdata) {
75 write
81 write
H A Dbug60634_error_5.phpt2 Bug #60634 (Segmentation fault when trying to die() in SessionHandler::write()) - fatal error in cl…
27 function write($id, $session_data) {
39 session_set_save_handler('open', 'close', 'read', 'write', 'destroy', 'gc');
/PHP-7.4/ext/gd/tests/
H A Dcreatefromwbmp2.phpt16 //write header
21 //write width = 2^32 / 4 + 1
31 /*write height = 4*/
35 /*write some data to cause overflow*/
H A Dcreatefromwbmp2_extern.phpt16 //write header
21 //write width = 2^32 / 4 + 1
31 /*write height = 4*/
35 /*write some data to cause overflow*/
/PHP-7.4/ext/dba/tests/
H A Ddba_tcadb.phpt29 Read during write: not allowed
31 Failed to write "key number 6" 2nd time
46 Read during write: not allowed
48 Failed to write "key number 6" 2nd time
H A Ddba_gdbm.phpt15 // Read during write is system dependent. Important is that there is no deadlock
23 Read during write:%sallowed
25 Failed to write "key number 6" 2nd time
/PHP-7.4/Zend/tests/
H A Dbuiltin_in_write_context_error1.phpt2 Cannot use built-in functions in write context (assignment)
10 Fatal error: Cannot use result of built-in function in write context in %s on line %d
H A Dbuiltin_in_write_context_error2.phpt2 Cannot use built-in functions in write context (reference)
10 Fatal error: Cannot use result of built-in function in write context in %s on line %d
H A Derrmsg_004.phpt2 errmsg: can't use function return value in write context
15 Fatal error: Can't use function return value in write context in %s on line %d
H A Derrmsg_005.phpt2 errmsg: can't use method return value in write context
18 Fatal error: Can't use method return value in write context in %s on line %d
/PHP-7.4/ext/standard/tests/file/
H A Dfputcsv_variation14.phpt7 Description: Format line as CSV and write to the file pointer
10 /* Testing fputcsv() to write to a file when default enclosure value and delimiter
66 // write to a file in csv format
93 Notice: fputcsv(): write of 12 bytes failed with errno=9 Bad file descriptor in %s on line %d
105 Notice: fputcsv(): write of 12 bytes failed with errno=9 Bad file descriptor in %s on line %d
117 Notice: fputcsv(): write of 12 bytes failed with errno=9 Bad file descriptor in %s on line %d
129 Notice: fputcsv(): write of 15 bytes failed with errno=9 Bad file descriptor in %s on line %d
141 Notice: fputcsv(): write of 15 bytes failed with errno=9 Bad file descriptor in %s on line %d
153 Notice: fputcsv(): write of 15 bytes failed with errno=9 Bad file descriptor in %s on line %d
165 Notice: fputcsv(): write of 16 bytes failed with errno=9 Bad file descriptor in %s on line %d
[all …]
H A Dstat_variation5-win32.phpt2 Test stat() functions: usage variations - file opened in read/write mode
17 /* test the stats of file opened in write mode and then same in read mode */
27 echo "\n*** Testing stat(): on a file with read/write permission ***\n";
58 *** Testing stat(): on a file with read/write permission ***
H A Dcopy_variation15.phpt16 /* Test copy(): Trying to create a copy of file in a dir which doesn't have write permissions */
20 echo "*** Test copy() function: Trying to create a copy of file in a dir which doesn't have write p…
31 chmod($dir, 0555); //dir without write permissions
49 *** Test copy() function: Trying to create a copy of file in a dir which doesn't have write permiss…
H A Dfile_put_contents_variation1.phpt17 $data = "The first string to write";
40 The first string to write, followed by this
42 The first string to write
/PHP-7.4/ext/phar/tests/cache_list/
H A Dcopyonwrite1.phar.phpt2 Phar: copy-on-write test 1 [cache_list]
10 files/write.phar
/PHP-7.4/ext/pgsql/tests/
H A D80_bug14383.phpt27 Read during write:%sallowed
29 Failed to write "key number 6" 2nd time
44 Read during write: not allowed
46 Failed to write "key number 6" 2nd time
/PHP-7.4/ext/sockets/tests/
H A Dsocket_select.phpt18 $write = null;
21 var_dump(socket_select($sockets, $write, $except, 0));
H A Dsocket_select-wrongparams-1-win32.phpt17 $write = null;
20 var_dump(socket_select($sockets, $write, $except, $time));

Completed in 27 milliseconds

12345678910>>...22