Home
last modified time | relevance | path

Searched refs:read (Results 101 – 125 of 624) sorted by relevance

12345678910>>...25

/php-src/ext/xmlreader/tests/
H A Dbug71805.phpt15 while (($lastRead = $XR->read()) && ($XR->name !== 'records'));
16 while (($lastRead = $XR->read()) && ($XR->name !== 'record'));
H A D007.phpt17 while ($reader->read());
32 while ($reader->read());
/php-src/Zend/tests/
H A Ddereference_014.phpt32 Warning: Attempt to read property "a" on null in %s on line %d
37 Warning: Attempt to read property "b" on null in %s on line %d
/php-src/ext/standard/tests/file/
H A Dfeof_basic.phpt19 //feof is not set to true until you try to read past the end of file.
21 //last time to set the eof flag but it will fail to read.
40 echo "*** testing feof on unclosed file after a read ***\n";
88 *** testing feof on unclosed file after a read ***
H A D007_variation18.phpt7 checking for the file creation, write & read operations,
23 var_dump( fread($file_handle, 100) ); //Check for read operation
24 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the end…
H A D007_variation2.phpt7 checking for the file creation, write & read operations,
23 var_dump( fread($file_handle, 100) ); //Check for read operation
24 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the end…
H A D007_variation10.phpt7 checking for the file creation, write & read operations,
23 var_dump( fread($file_handle, 100) ); //Check for read operation
24 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the end…
H A Dfile_get_contents_file_put_contents_5gb.phpt63 echo "Could only read " . strlen($result_large_string) . " bytes of $large_string_len bytes.";
66 echo "File read successfully." . PHP_EOL;
80 File read successfully.
H A Drename_variation7-win32.phpt31 Warning: readlink(): readlink failed to read the symbolic link (%srename_variation7-win32.php.tmp.l…
34 Warning: readlink(): readlink failed to read the symbolic link (%srename_variation7-win32.php.tmp.l…
H A D007_variation14.phpt7 checking for the file creation, write & read operations,
24 var_dump( fread($file_handle, 100) ); //Check for read operation; passes; expected: content of file
25 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the end…
H A D007_variation22.phpt7 checking for the file creation, write & read operations,
24 var_dump( fread($file_handle, 100) ); //Check for read operation; passes; expected: content of file
25 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the end…
H A D007_variation6.phpt7 checking for the file creation, write & read operations,
24 var_dump( fread($file_handle, 100) ); //Check for read operation; passes; expected: content of file
25 var_dump( ftell($file_handle) ); //File pointer position after read operation, expected at the end…
/php-src/ext/standard/tests/dir/
H A Drewinddir_variation2.phpt14 echo "\n-- Create the directory handle, read and close the directory --\n";
34 -- Create the directory handle, read and close the directory --
H A Drewinddir_variation2-win32-mb.phpt20 echo "\n-- Create the directory handle, read and close the directory --\n";
40 -- Create the directory handle, read and close the directory --
/php-src/ext/session/tests/user_session_module/
H A Dsession_set_save_handler_error3.phpt20 function read($id) { return false; }
25 session_set_save_handler("open", "close", "read", "write", "destroy", "gc");
H A Dsession_set_save_handler_multiple.phpt23 function read($key): string|false {
58 session_set_save_handler('open', 'close', 'read', 'write', 'destroy', 'gc', 'create_sid', 'validate…
67 session_set_save_handler("open", "close", "read", "write", "destroy", "gc");
H A Dsession_set_save_handler_class_003.phpt21 public function read($key): string|false {
23 return parent::read($key);
/php-src/ext/zlib/tests/
H A Dgzopen_variation4.phpt39 // should read dir2 file
52 //should now read dir1 file
65 //should still read dir1 file
76 //should read the file in working dir
89 //should read the file in script dir
/php-src/ext/standard/tests/file/windows_mb_path/
H A Dbug54028.phpt2 Bug #54028 Directory::read() cannot handle non-unicode chars properly
31 while (false !== ($content = $directory->read())) {
/php-src/Zend/tests/offsets/
H A Dinternal_handlers_extended.phpt45 NoImplement, read: true, write: false, has: false, unset: false, readType: BP_VAR_R, hasOffset: tru…
46 DoImplement, read: true, write: false, has: false, unset: false, readType: BP_VAR_R, hasOffset: tru…
/php-src/ext/spl/tests/
H A Dgh13685.phpt47 Cannot read from file php://temp
52 Cannot read from file php://temp
/php-src/ext/intl/tests/
H A Dcpbi_getLastCodePoint_basic.phpt16 //first() and last() don't read codepoint and set the last code point var to -1
17 //The pointer is after the last read codepoint if moving forward and
18 //before the last read codepoint is moving backwards
/php-src/ext/standard/tests/streams/
H A Dstream_get_line_nb.phpt15 * length bytes have been read, the string specified by ending is found, EOF.
31 var_dump(stream_get_line($sockets[1], 8192, $eol)); // Nothing to read
35 … strlen("incomplete line"), $eol)); // EOL not found but $length has been read, return incomplete …
/php-src/ext/curl/
H A Dinterface.c161 if (ch->handlers.read && !Z_ISUNDEF(ch->handlers.read->stream)) { in _php_curl_verify_handlers()
169 ch->handlers.read->res = NULL; in _php_curl_verify_handlers()
170 ch->handlers.read->fp = 0; in _php_curl_verify_handlers()
474 if (curl->handlers.read) { in curl_get_gc()
1273 ch->handlers.read->stream = source->handlers.read->stream; in _php_setup_easy_copy_handlers()
1274 ch->handlers.read->method = source->handlers.read->method; in _php_setup_easy_copy_handlers()
1283 ch->handlers.read->fp = source->handlers.read->fp; in _php_setup_easy_copy_handlers()
1284 ch->handlers.read->res = source->handlers.read->res; in _php_setup_easy_copy_handlers()
1287 zend_fcc_dup(&source->handlers.read->fcc, &source->handlers.read->fcc); in _php_setup_easy_copy_handlers()
2833 efree(ch->handlers.read); in curl_free_obj()
[all …]
/php-src/ext/standard/tests/image/
H A Dbug67250.phpt2 Bug #67250 (iptcparse out-of-bounds read)

Completed in 38 milliseconds

12345678910>>...25