Home
last modified time | relevance | path

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

12345678910>>...23

/PHP-7.2/ext/zlib/tests/
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_variation3.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 Dzlib_scheme_file_put_contents_basic.phpt15 text to be read
29 text to be read
/PHP-7.2/ext/shmop/
H A DREADME20 a for read only access (sets SHM_RDONLY)
21 w for read & write access
34 shmid - shmid from which to read
36 count - how many bytes to read
38 returns the data read
42 shmid - shmid from which to read
/PHP-7.2/ext/session/tests/
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");
H A Dsession_module_name_variation2.phpt20 function read($id) { }
26 session_set_save_handler("open", "close", "read", "write", "destroy", "gc");
/PHP-7.2/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
/PHP-7.2/ext/standard/tests/file/
H A Dreadfile_variation5.phpt115 echo "File not read\n";
158 File not read
162 File not read
166 File not read
170 File not read
210 File not read
214 File not read
H A Dfopen_variation10-win32.phpt69 echo "file not opened for read\n";
99 file not opened for read
106 file not opened for read
113 file not opened for read
123 file not opened for read
145 file not opened for read
H A Dfopen_variation11-win32.phpt68 echo "file not opened for read\n";
97 file not opened for read
104 file not opened for read
111 file not opened for read
121 file not opened for read
143 file not opened for read
H A Dfgetc_variation4.phpt2 Test fgetc() function : usage variations - different read modes
10 /* read from fie using fgetc, file opened using different
11 read read modes */
14 echo "-- Testing fgetc() with files opened with different read modes --\n";
37 // read from file, at least 7 chars
55 -- Testing fgetc() with files opened with different read modes --
/PHP-7.2/ext/xmlreader/tests/
H A D009.phpt16 $reader->read();
17 $reader->read();
H A D010.phpt15 $reader->read();
16 $reader->read();
H A D011.phpt17 $reader->read();
25 $reader->read();
/PHP-7.2/ext/standard/tests/dir/
H A Dopendir_variation7.phpt38 /*1*/ 0477, // owner has read only, other and group has rwx
41 /*3*/ 0444, // all have read only
44 /*5*/ 0400, // owner has read only, group and others have no permission
47 /*7*/ 0470, // owner has read only, group has rwx & others have no permission
48 0407, // owner has read only, other has rwx & group has no permission
54 // Open directory with different permission values, read and close, expected: none of them to succe…
H A Dscandir_variation7.phpt37 /*1*/ 0477, // owner has read only, other and group has rwx
40 /*3*/ 0444, // all have read only
43 /*5*/ 0400, // owner has read only, group and others have no permission
46 /*7*/ 0470, // owner has read only, group has rwx & others have no permission
47 0407, // owner has read only, other has rwx & group has no permission
/PHP-7.2/ext/zlib/
H A Dzlib_fopen_wrapper.c38 int read; in php_gziop_read() local
41 read = gzread(self->gz_file, buf, count); in php_gziop_read()
47 return (size_t)((read < 0) ? 0 : read); in php_gziop_read()
/PHP-7.2/ext/standard/tests/streams/
H A Dproc_open_bug51800.phpt11 pipes have to be read/written simultaneously
14 /* This is the wrong way to do it. The parent will block till it has read all the STDIN.
16 after taking inappropriately long. Pipes have to be read simultaneously in smaller chunks,
18 write. The behaviour might look some better if write/read in a separate thread, however
/PHP-7.2/ext/oci8/tests/
H A Dlob_003.phpt42 var_dump($row[0]->read(-1));
43 var_dump($row[0]->read(10000));
73 Warning: OCI-Lob::read(): Length parameter must be greater than 0 in %s on line %d
/PHP-7.2/ext/mysqli/tests/
H A Dmysqli_poll.phpt51 $read = $error = $reject = array($link);
52 if (0 !== ($tmp = (mysqli_poll($read, $error, $reject, 0, 1))))
55 $read = $error = $reject = array($link);
56 if (false !== ($tmp = (mysqli_poll($read, $error, $reject, -1, 1))))
59 $read = $error = $reject = array($link);
60 if (false !== ($tmp = (mysqli_poll($read, $error, $reject, 0, -1))))
66 printf("[%03d + 1] There should be %d links ready to read from, %d ready\n",
/PHP-7.2/tests/classes/
H A Dconstants_basic_002.phpt13 echo "\nFail to read class constant from instance.\n";
24 Fail to read class constant from instance.

Completed in 23 milliseconds

12345678910>>...23