Home
last modified time | relevance | path

Searched refs:fread (Results 26 – 50 of 204) sorted by relevance

123456789

/PHP-7.2/ext/standard/tests/streams/
H A Dstream_set_chunk_size.phpt36 var_dump(strlen(fread($f, 10000)));
43 var_dump(strlen(fread($f, 250)));
45 var_dump(strlen(fread($f, 50)));
47 var_dump(strlen(fread($f, 50)));
H A Dproc_open_bug51800_right.phpt44 $stdout .= fread($pipes[1], 1024);
45 $stderr .= fread($pipes[2], 1024);
H A Dproc_open_bug51800_right2.phpt50 $stdout .= fread($pipes[1], 1024);
51 $stderr .= fread($pipes[2], 1024);
H A Dbug46147.phpt10 echo fread($fp, 5);
H A Dstream_socket_pair.phpt9 var_dump(fread($sockets[1], strlen("foo")));
H A Dstream_get_meta_data_socket_variation2.phpt22 fread($client, 1);
30 fread($client, 5);
H A Dstream_get_meta_data_process_basic.phpt10 $data = fread($handle, 100);
/PHP-7.2/ext/standard/tests/file/
H A Dfpassthru_error.phpt14 $no_file = fread("/no/such/file", "r");
29 Warning: fread() expects parameter 1 to be resource, string given in %s on line %d
H A Dfread_basic.phpt2 Test fread() function : basic functionality
6 Prototype: string fread ( resource $handle [, int $length] );
31 echo "*** Testing fread() basic operations ***\n";
33 test fread with file opened in "r" and "rb" mode only
45 /* open the file using $files_modes and perform fread() on it */
65 $data_from_file=fread($file_handle, 1024);
103 *** Testing fread() basic operations ***
105 -- Testing fread) with file having data of type numeric --
239 -- Testing fread) with file having data of type text --
373 -- Testing fread) with file having data of type text_with_new_line --
[all …]
H A Dbug27619.phpt11 echo fread($fp, 4);
H A Dfread_variation3-win32-mb.phpt2 Test fread() function : usage variations - read beyond file size, read/write mode
12 Prototype: string fread ( resource $handle [, int $length] );
37 $data_from_file = fread($file_handle, $read_size);
53 echo "*** Testing fread() : usage variations ***\n";
62 echo "\n-- Testing fread() with file having content of type ". $file_content_type ." --\n";
64 /* open the file using $files_modes and perform fread() on it */
95 // try fread when file pointer at end
113 *** Testing fread() : usage variations ***
115 -- Testing fread() with file having content of type numeric --
243 -- Testing fread() with file having content of type text --
[all …]
H A Dfread_variation3-win32.phpt2 Test fread() function : usage variations - read beyond file size, read/write mode
12 Prototype: string fread ( resource $handle [, int $length] );
37 $data_from_file = fread($file_handle, $read_size);
53 echo "*** Testing fread() : usage variations ***\n";
62 echo "\n-- Testing fread() with file having content of type ". $file_content_type ." --\n";
64 /* open the file using $files_modes and perform fread() on it */
95 // try fread when file pointer at end
113 *** Testing fread() : usage variations ***
115 -- Testing fread() with file having content of type numeric --
243 -- Testing fread() with file having content of type text --
[all …]
/PHP-7.2/ext/phar/
H A Dshortarc.php117 $L = unpack('V', $a = (binary)fread($fp, 4));
125 $last = (binary)fread($fp, $read);
252 $data .= @fread($fp, $c);
256 $data .= @fread($fp, 8192);
/PHP-7.2/Zend/tests/
H A Dhalt02.phpt8 print fread($fp, 1000);
/PHP-7.2/ext/standard/tests/dir/
H A Drewinddir_variation3.phpt20 $result1 = fread($fp, 5);
22 $result2 = fread($fp, 5);
/PHP-7.2/ext/pdo_oci/tests/
H A Dpdo_oci_fread_1.phpt2 PDO_OCI: check fread() EOF
41 $buffer = fread($sh,1024);
H A Dbug46274_2.phpt52 var_dump(fread($row[0], 1024));
57 var_dump(fread($row[0], 1024));
/PHP-7.2/ext/phar/tests/
H A Dfopen.phpt20 echo fread($a, 2);
23 echo fread($a, 2);
H A Dfopen_edgecases2.phpt19 echo fread($a, 1000);
26 echo fread($a, 1000);
H A Dfopen5.2.phpt20 echo fread($a, 2);
23 echo fread($a, 2);
H A Drefcount1.phpt29 var_dump(fread($b, 20));
34 var_dump(fread($b, 20));
/PHP-7.2/ext/openssl/tests/
H A Dbug48182.phpt25 $data = "Sending bug48182\n" . fread($client, 8192);
45 echo fread($client, 1024);
H A Dbug72333.phpt20 $result = fread($conn, $total);
25 $result = fread($conn, 100000);
/PHP-7.2/ext/tokenizer/
H A Dtokenizer.php9 $content .= fread($fp, 4096);
/PHP-7.2/ext/
H A Dext_skel_win32.php40 $php_file = fread($fp, filesize("$extname/$extname.php"));

Completed in 63 milliseconds

123456789