Home
last modified time | relevance | path

Searched refs:read (Results 51 – 75 of 552) sorted by relevance

12345678910>>...23

/PHP-7.4/ext/openssl/tests/
H A Dbug77390.phpt24 $read = [$fp];
28 while (stream_select($read, $write, $except, 1000)) {
85 $read = [$upstream, $conn];
86 while (stream_select($read, $write, $except, 1)) {
87 foreach ($read as $fp) {
106 $read = [$upstream, $conn];
/PHP-7.4/ext/oci8/tests/
H A Dbug70700.phpt51 $data = $lob->read(8192); // read($characters), not read($bytes)
82 $data = $lob->read(8192); // read($characters), not read($bytes)
113 $data = $lob->read(8192); // read($characters), not read($bytes)
144 $data = $lob->read(8192); // read($characters), not read($bytes)
/PHP-7.4/ext/bz2/tests/
H A Dbug71263.phpt39 echo "read: "; var_dump($s);
51 read: bool(false)
53 read: string(0) ""
55 read: bool(false)
/PHP-7.4/ext/xmlreader/tests/
H A D012.phpt15 $reader->read();
33 while($reader->read() && $reader->nodeType != XMLReader::ELEMENT);
48 while($reader->read() && $reader->nodeType != XMLReader::ELEMENT);
56 while($reader->read() && $reader->nodeType != XMLReader::ELEMENT);
H A D009.phpt15 $reader->read();
16 $reader->read();
H A D010.phpt14 $reader->read();
15 $reader->read();
/PHP-7.4/ext/standard/tests/dir/
H A Ddir_variation3.phpt14 * Description: Directory class with properties, handle and class and methods read, rewind and close
32 /*1*/ 0477, // owner has read only, other and group has rwx
35 /*3*/ 0444, // all have read only
38 /*5*/ 0400, // owner has read only, group and others have no permission
41 /*7*/ 0470, // owner has read only, group has rwx & others have no permission
42 0407, // owner has read only, other has rwx & group has no permission
48 // Open directory with different permission values, read and close, expected: none of them to succe…
68 // try read directory, expected : false
70 var_dump($d->read());
H A Dreaddir_variation5.phpt18 * Open a directory with different premissions then try to read it
30 /*1*/ 0477, // owner has read only, other and group has rwx
33 /*3*/ 0444, // all have read only
36 /*5*/ 0400, // owner has read only, group and others have no permission
39 /*7*/ 0470, // owner has read only, group has rwx & others have no permission
40 0407, // owner has read only, other has rwx & group has no permission
46 // Open directory with different permission values, read and close, expected: none of them to succe…
H A Dopendir_variation7.phpt30 /*1*/ 0477, // owner has read only, other and group has rwx
33 /*3*/ 0444, // all have read only
36 /*5*/ 0400, // owner has read only, group and others have no permission
39 /*7*/ 0470, // owner has read only, group has rwx & others have no permission
40 0407, // owner has read only, other has rwx & group has no permission
46 // Open directory with different permission values, read and close, expected: none of them to succe…
H A Dscandir_variation7.phpt29 /*1*/ 0477, // owner has read only, other and group has rwx
32 /*3*/ 0444, // all have read only
35 /*5*/ 0400, // owner has read only, group and others have no permission
38 /*7*/ 0470, // owner has read only, group has rwx & others have no permission
39 0407, // owner has read only, other has rwx & group has no permission
/PHP-7.4/ext/spl/tests/
H A DSplFileObject_fputcsv_variation14.phpt7 of two chars is provided and file is opened in read only mode */
9 echo "*** Testing fputcsv() : with enclosure & delimiter of two chars and file opened in read mode …
25 *** Testing fputcsv() : with enclosure & delimiter of two chars and file opened in read mode ***
/PHP-7.4/ext/mysqli/tests/
H A Dbug63398.phpt19 $read = $error = $reject = array();
20 $read[] = $error[] = $reject[] = $link;
22 mysqli_poll($read, $error, $reject, 1);
/PHP-7.4/ext/reflection/tests/
H A D002.phpt2 Reflection properties are read only
57 Cannot set read-only property ReflectionMethodEx::$class
58 Cannot set read-only property ReflectionMethodEx::$name
/PHP-7.4/ext/standard/tests/streams/
H A Dbug54946.phpt35 Notice: stream_get_contents(): read of 8192 bytes failed with errno=9 Bad file descriptor in %s on …
38 Notice: stream_get_contents(): read of 8192 bytes failed with errno=9 Bad file descriptor in %s on …
41 Notice: stream_get_contents(): read of 8192 bytes failed with errno=9 Bad file descriptor in %s on …
/PHP-7.4/ext/standard/tests/file/
H A Dfscanf_variation54.phpt11 /* Test fscanf() to scan a file to read objects */
15 echo "*** Test fscanf(): to read objects from a file ***\n";
46 // opening file for read
68 *** Test fscanf(): to read objects from a file ***
/PHP-7.4/ext/session/tests/
H A Dbug32330.phpt31 echo "read: id = {$id}\n";
73 read: id = %s
78 read: id = %s
83 read: id = %s
H A Dsession_set_save_handler_class_012.phpt31 public function read($key) {
34 return parent::read($key);
51 Warning: SessionHandler::read(): Parent session handler is not open in %s on line %d
55 Warning: session_start(): Failed to read session data: user (%s) in %s on line %d
H A Dsession_set_save_handler_error3.phpt15 …* Prototype : bool session_set_save_handler(callback $open, callback $close, callback $read, callb…
26 function read($id) { return false; }
31 session_set_save_handler("open", "close", "read", "write", "destroy", "gc");
H A Dbug61728.phpt19 function read ($id) {
38 session_set_save_handler ("open", "close", "read", "write", "destroy", "gc");
/PHP-7.4/ext/zlib/tests/
H A Dgzfile_variation15.phpt36 // should read dir2 file
45 //should now read dir1 file
54 //should still read dir1 file
61 //should read the file in working directory
70 //should read the file in script dir
H A Dreadgzfile_variation15.phpt36 // should read dir2 file
46 //should now read dir1 file
56 //should still read dir1 file
64 //should read the file in working dir
74 //should read the file in script dir
H A Dgzseek_basic.phpt17 //read the next 10
23 //read the next 10
29 //read the next 10
H A Dgzseek_variation2.phpt17 //read the next 10
23 //read the next 10
29 //read the next 10
H A Dgzseek_variation3.phpt17 //read the next 10
23 //read the next 10
29 //read the next 10
/PHP-7.4/ext/shmop/tests/
H A D001.phpt37 echo "shm open for read only: ";
52 echo "shm open for read only: ";
84 shm open for read only: ok
87 Warning: shmop_write(): trying to write to a read only segment in %s on line %d
88 shm open for read only: ok

Completed in 28 milliseconds

12345678910>>...23