Home
last modified time | relevance | path

Searched refs:read (Results 26 – 50 of 554) sorted by relevance

12345678910>>...23

/PHP-7.2/ext/standard/tests/streams/
H A Dbug69521.phpt22 $read = $write = array($fp);
27 $changed = stream_select($read, $write, $except, 0, 500000);
29 if (!empty($read))
/PHP-7.2/ext/oci8/tests/
H A Dlob_044.phpt34 var_dump($blob->read(10000));
37 var_dump($blob->read(10000));
44 echo "\nTest 2 - read it back\n";
49 var_dump($row[0]->read(10000));
71 Test 2 - read it back
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)
H A Dlob_019.phpt2 oci_lob_write()/erase()/read() with BLOBs
40 var_dump($row[0]->read(5));
41 var_dump($row[0]->read(5));
42 var_dump($row[0]->read(5));
/PHP-7.2/ext/standard/tests/directory/
H A DDirectoryClass_basic_001.phpt7 * Description: Directory class with properties, handle and class and methods read, rewind and close
18 var_dump($d->read());
52 Method [ <internal:standard> public method read ] {
64 Warning: Directory::read(): Unable to find my handle property in %s on line 15
H A DDirectoryClass_error_001-mb.phpt13 var_dump($d->read());
20 var_dump($d->read());
26 var_dump($d->read(1,2));
40 Warning: Directory::read(): supplied argument is not a valid Directory resource in %s on line %d
51 Warning: Directory::read(): Unable to find my handle property in %s on line %d
62 Warning: Directory::read() expects at most 1 parameter, 2 given in %s on line %d
/PHP-7.2/ext/xmlreader/tests/
H A D006.phpt16 // 2 read to get on the 2nd node
17 $reader->read();
18 $reader->read();
H A D012.phpt16 $reader->read();
34 while($reader->read() && $reader->nodeType != XMLReader::ELEMENT);
49 while($reader->read() && $reader->nodeType != XMLReader::ELEMENT);
57 while($reader->read() && $reader->nodeType != XMLReader::ELEMENT);
/PHP-7.2/ext/standard/tests/file/
H A Dfgetss_variation1-win32.phpt65 /* read entire file and strip tags */
67 var_dump( fgetss($file_handle) ); // expected : no character should be read
88 -- fgetss() with default length, file pointer at 0 , expected : no character should be read --
98 -- fgetss() with default length, file pointer at 0 , expected : no character should be read --
108 -- fgetss() with default length, file pointer at 0 , expected : no character should be read --
118 -- fgetss() with default length, file pointer at 0 , expected : no character should be read --
128 -- fgetss() with default length, file pointer at 0 , expected : no character should be read --
138 -- fgetss() with default length, file pointer at 0 , expected : no character should be read --
148 -- fgetss() with default length, file pointer at 0 , expected : no character should be read --
158 -- fgetss() with default length, file pointer at 0 , expected : no character should be read --
[all …]
H A Dfgetss_variation1.phpt61 /* read entire file and strip tags */
63 var_dump( fgetss($file_handle) ); // expected : no character should be read
84 -- fgetss() with default length, file pointer at 0 , expected : no character should be read --
94 -- fgetss() with default length, file pointer at 0 , expected : no character should be read --
104 -- fgetss() with default length, file pointer at 0 , expected : no character should be read --
114 -- fgetss() with default length, file pointer at 0 , expected : no character should be read --
124 -- fgetss() with default length, file pointer at 0 , expected : no character should be read --
134 -- fgetss() with default length, file pointer at 0 , expected : no character should be read --
144 -- fgetss() with default length, file pointer at 0 , expected : no character should be read --
154 -- fgetss() with default length, file pointer at 0 , expected : no character should be read --
[all …]
H A Dlstat_stat_variation13.phpt27 echo "*** Checking stat() on a file opened using read/write mode ***\n";
34 // opening file again in read mode
35 $file_handle = fopen($filename, "r"); // read file
52 *** Checking stat() on a file opened using read/write mode ***
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.2/ext/session/tests/
H A Dsession_set_save_handler_error2.phpt13 …* Prototype : bool session_set_save_handler(callback $open, callback $close, callback $read, callb…
22 function read($id) { return false; }
27 session_set_save_handler("open", "close", "read", "write", "destroy", "gc");
37 session_set_save_handler("open", "close", "read", "write", "destroy", "gc");
H A Dbug69111.phpt2 Bug #69111 Crash in SessionHandler::read()
17 var_dump($sh->read(@$id));
24 Warning: SessionHandler::read(): Session is not active in %s on line 12
H A Dsession_set_save_handler_class_005.phpt28 public function read($id) {
30 return parent::read($id);
45 Warning: SessionHandler::read(): Parent session handler is not open in %ssession_set_save_handler_c…
49 Warning: session_start(): Failed to read session data: user (%s) in %ssession_set_save_handler_clas…
H A Dbug32330.phpt31 echo "read: id = {$id}\n";
73 read: id = %s
78 read: id = %s
83 read: id = %s
/PHP-7.2/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.2/ext/zlib/tests/
H A Dgzrewind_basic2.phpt14 // read to the end of the file
15 echo "read to the end of the file, then rewind\n";
28 read to the end of the file, then rewind
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
/PHP-7.2/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.2/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.2/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.2/ext/standard/tests/dir/
H A Ddir_variation3.phpt22 * Description: Directory class with properties, handle and class and methods read, rewind and close
40 /*1*/ 0477, // owner has read only, other and group has rwx
43 /*3*/ 0444, // all have read only
46 /*5*/ 0400, // owner has read only, group and others have no permission
49 /*7*/ 0470, // owner has read only, group has rwx & others have no permission
50 0407, // owner has read only, other has rwx & group has no permission
56 // Open directory with different permission values, read and close, expected: none of them to succe…
76 // try read directory, expected : false
78 var_dump($d->read());
H A Dreaddir_variation5.phpt26 * Open a directory with different premissions then try to read it
38 /*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…
/PHP-7.2/ext/wddx/tests/
H A Dbug75055.phpt11 print strlen($wddx_str) . " bytes read.\n";
16 323 bytes read.

Completed in 29 milliseconds

12345678910>>...23