Home
last modified time | relevance | path

Searched refs:fread (Results 176 – 200 of 209) sorted by relevance

123456789

/PHP-7.4/ext/ftp/tests/
H A Dserver.inc94 $buf = fread($s, 2048);
119 if (!preg_match('/^PBSZ \d+\r\n$/', $buf = fread($s, 2048))) {
125 $buf = fread($s, 2048);
134 $buf = fread($s, 2048);
157 if (!preg_match('/^PASS (\w+)\r\n$/', $buf = fread($s, 100), $m)) {
178 while($buf = fread($s, 4098)) {
/PHP-7.4/ext/standard/tests/file/
H A D007_variation14.phpt35 var_dump( fread($file_handle, 100) ); //Check for read operation; passes; expected: content of file
H A D007_variation22.phpt35 var_dump( fread($file_handle, 100) ); //Check for read operation; passes; expected: content of file
H A D007_variation8.phpt35 var_dump( fread($file_handle, 100) ); //Check for read operation; passes; expected: content of the…
H A Dinclude_userstream_002.phpt30 return fread($this->stream, $count);
H A D007_variation16.phpt35 var_dump( fread($file_handle, 100) ); //Check for read operation; passes; expected: content of the…
H A D007_variation24.phpt35 var_dump( fread($file_handle, 100) ); //Check for read operation; passes; expected: content of the…
H A D007_variation4.phpt38 var_dump( fread($file_handle, 100) ); //Check for read operation; passes; expected: content of file
H A Dfeof_basic.phpt48 fread($h, 100);
H A D007_variation12-win32.phpt43 var_dump( fread($file_handle, 100) ); //Check for read operation; passes; expected: content of file
H A D007_variation12.phpt43 var_dump( fread($file_handle, 100) ); //Check for read operation; passes; expected: content of file
H A D007_variation20.phpt38 var_dump( fread($file_handle, 100) ); //Check for read operation; passes; expected: content of file
H A Dfopen_variation14-win32.phpt67 if (fread($h, 4096) != $readData) {
86 if (fread($h, 4096) != $writeData) {
H A Dinclude_userstream_003.phpt30 return fread($this->stream, $count);
H A Dfopen_variation15-win32.phpt71 if (fread($h, 4096) != $readData) {
90 if (fread($h, 4096) != $writeData) {
H A D005_variation-win32.phpt92 fread($file_read_handle, 10);
/PHP-7.4/ext/imap/tests/
H A Dimap_fetch_overview_variation6.phpt71 $part4["contents.data"] = base64_encode(fread($file_handle, 1));
/PHP-7.4/ext/mysqli/tests/
H A D061.phpt27 $buffer = strrev(fread($fp, $buflen));
/PHP-7.4/ext/openssl/tests/
H A Dstream_server_reneg_limit.phpt59 $buffer = fread($sock, 1024);
/PHP-7.4/ext/spl/tests/
H A Dbug55701.phpt256 $o->fread(1);
262 $o->fread(1);
/PHP-7.4/ext/soap/tests/
H A Dbug73037.phpt109 $out .= fread($fp, 1024);
/PHP-7.4/Zend/
H A Dzend_stream.c30 return fread(buf, 1, len, (FILE*)handle); in zend_stream_stdio_reader()
/PHP-7.4/ext/gd/libgd/
H A Dgdtest.c401 int got = fread (buf, 1, len, (FILE *) context); in freadWrapper()
/PHP-7.4/sapi/fpm/tests/
H A Dfcgi.inc411 if ($packet = fread($this->_sock, self::HEADER_LEN)) {
416 while ($len && $buf=fread($this->_sock, $len)) {
422 $buf = fread($this->_sock, $resp['paddingLength']);
/PHP-7.4/docs/
H A Dstreams.md18 Streams use a `php_stream*` parameter just as ANSI stdio (fread etc.) use a
40 names: fread, fwrite, fprintf, feof, fgetc, fgets, fclose, fflush, fseek, ftell,

Completed in 50 milliseconds

123456789