Home
last modified time | relevance | path

Searched refs:read (Results 126 – 150 of 554) sorted by relevance

12345678910>>...23

/PHP-7.2/ext/sqlite3/tests/
H A Dsqlite3_30_blobopen.phpt28 echo "Writing to read-only stream\n";
60 Writing to read-only stream
62 Warning: fwrite(): Can't write to blob stream: is open as read only in %s on line %d
/PHP-7.2/ext/zip/
H A DTODO3 - crypt support for zip (read and write)
/PHP-7.2/ext/oci8/tests/
H A Dlob_008.phpt2 oci_lob_write()/read()/eof()
40 $len += strlen($row[0]->read(1024));
H A Dlob_009.phpt2 oci_lob_import()/read()
38 var_dump(str_replace("\r", "", $row[0]->read(1024)));
/PHP-7.2/ext/session/tests/
H A Dsession_set_save_handler_class_003.phpt27 public function read($key) {
29 return parent::read($key);
H A Dsession_set_save_handler_class_013.phpt28 public function read($key) {
31 return parent::read($key);
H A Dsave_handler_closures.inc5 foreach (array ('open', 'close', 'read', 'write', 'destroy', 'gc') as $fn) {
H A Dbug60634.phpt22 function read($id) {
38 session_set_save_handler('open', 'close', 'read', 'write', 'destroy', 'gc');
H A Dsession_set_save_handler_sid_001.phpt30 public function read($id) {
59 …array($handler, 'read'), array($handler, 'write'), array($handler, 'destroy'), array($handler, 'gc…
H A Dsave_handler.inc13 * Session data lock is mandatory. Lock must be exclusive. i.e. Block read also.
49 function read($id) {
53 // read() would be the best place for locking for most save handlers.
59 // read MUST create file. Otherwise, strict mode will not work
62 // MUST return STRING for successful read().
72 // NOTE: This function may unlock session data locked by read(). If write() is
/PHP-7.2/ext/standard/tests/file/
H A Dfgets_socket_variation1.phpt37 echo "\n\nClose the server side socket and read the remaining data from the client\n";
61 Close the server side socket and read the remaining data from the client
H A Dfgetcsv_variation23.phpt10 /* Testing fgetcsv() to read from an empty file */
15 // create the file and then open in read mode and try reading
H A D007_variation13-win32.phpt23 checking for the file creation, write & read operations,
40 var_dump( fread($file_handle, 100) ); //Check for read operation; fails; expected: empty string
41 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the end…
H A D007_variation13.phpt23 checking for the file creation, write & read operations,
40 var_dump( fread($file_handle, 100) ); //Check for read operation; fails; expected: empty string
41 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the end…
H A D007_variation15.phpt18 checking for the file creation, write & read operations,
35 var_dump( fread($file_handle, 100) ); //Check for read operation; fails; expected: empty string
36 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the beg…
H A D007_variation23.phpt18 checking for the file creation, write & read operations,
35 var_dump( fread($file_handle, 100) ); //Check for read operation; fails; expected: empty string
36 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the beg…
H A D007_variation7.phpt18 checking for the file creation, write & read operations,
35 var_dump( fread($file_handle, 100) ); //Check for read operation; fails; expected: empty string
36 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the beg…
H A D007_variation8.phpt18 checking for the file creation, write & read operations,
35 var_dump( fread($file_handle, 100) ); //Check for read operation; passes; expected: content of the…
36 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the end…
H A Dfgetc_variation1.phpt2 Test fgetc() function : usage variations - read when file pointer at EOF
19 // loop to check the file opened in different read modes
36 var_dump( fgetc($file_handle) ); // try n read a char, none expected
/PHP-7.2/ext/xmlrpc/tests/
H A Dbug77242.phpt2 Bug #77242 (heap out of bounds read in xmlrpc_decode())
/PHP-7.2/Zend/tests/
H A Dbug69025.phpt2 Bug #69025 (Invalid read of size 4 when calling __callStatic)
/PHP-7.2/ext/curl/
H A Dinterface.c253 if (ch->handlers->read && !Z_ISUNDEF(ch->handlers->read->stream)) { in _php_curl_verify_handlers()
261 ch->handlers->read->res = NULL; in _php_curl_verify_handlers()
262 ch->handlers->read->fp = 0; in _php_curl_verify_handlers()
2021 ch->handlers->read->stream = source->handlers->read->stream; in _php_setup_easy_copy_handlers()
2022 ch->handlers->read->method = source->handlers->read->method; in _php_setup_easy_copy_handlers()
2031 ch->handlers->read->fp = source->handlers->read->fp; in _php_setup_easy_copy_handlers()
2032 ch->handlers->read->res = source->handlers->read->res; in _php_setup_easy_copy_handlers()
2043 ZVAL_COPY(&ch->handlers->read->func_name, &source->handlers->read->func_name); in _php_setup_easy_copy_handlers()
3419 efree(ch->handlers->read); in _php_curl_close_ex()
3492 ch->handlers->read->fp = NULL; in _php_curl_reset_handlers()
[all …]
/PHP-7.2/ext/standard/tests/dir/
H A Drewinddir_variation2-win32-mb.phpt26 echo "\n-- Create the directory handle, read and close the directory --\n";
43 -- Create the directory handle, read and close the directory --
/PHP-7.2/ext/dba/tests/
H A Ddba_cdb_read.phpt2 DBA CDB handler test (read only)
14 // read key sequence
/PHP-7.2/ext/phar/
H A Dtar.c164 size_t save = php_stream_tell(fp), read; in phar_tar_process_metadata() local
209 size_t pos = 0, read, totalsize; in phar_parse_tarfile() local
225 if (read != sizeof(buf)) { in phar_parse_tarfile()
288 read = php_stream_read(fp, buf, size); in phar_parse_tarfile()
289 if (read != size || read <= 8) { in phar_parse_tarfile()
330 if (read != sizeof(buf)) { in phar_parse_tarfile()
370 if (read != entry.filename_len) { in phar_parse_tarfile()
398 if (read != sizeof(buf)) { in phar_parse_tarfile()
531 read = php_stream_read(fp, buf, size); in phar_parse_tarfile()
533 if (read == size) { in phar_parse_tarfile()
[all …]

Completed in 41 milliseconds

12345678910>>...23