Searched refs:feof (Results 1 – 25 of 248) sorted by relevance
12345678910
/PHP-5.5/ext/standard/tests/file/ |
H A D | feof_basic.phpt | 2 Test feof() function : basic functionality 7 /* Prototype : proto bool feof(resource fp) 29 while (!feof($h)) { 43 var_dump(feof($h)); 49 var_dump(feof($h)); 55 var_dump(feof($h)); 59 var_dump(feof($h)); 63 var_dump(feof($h)); 67 feof($h); 79 *** writing 10 lines, testing feof *** [all …]
|
H A D | stream_rfc2397_007.phpt | 19 var_dump(feof($fp)); 23 var_dump(feof($fp)); 27 var_dump(feof($fp)); 32 var_dump(feof($fp)); 36 var_dump(feof($fp)); 40 var_dump(feof($fp)); 44 var_dump(feof($fp)); 48 var_dump(feof($fp)); 52 var_dump(feof($fp)); 56 var_dump(feof($fp)); [all …]
|
H A D | 007_error.phpt | 2 Test fopen, fclose() & feof() functions: error conditions 15 Prototype: bool feof ( resource $handle ) 34 //feof() 35 var_dump( feof($fp) ); // closed handle 36 var_dump( feof(__FILE__) ); // invalid handle 37 var_dump( feof() ); //zero argument 45 var_dump( feof($fp, "handle")); 66 var_dump( feof($invalid_args[$loop_counter - 1]) ); 71 *** Testing error conditions for fopen(), fclsoe() & feof() *** 88 Warning: feof(): %d is not a valid stream resource in %s on line %d [all …]
|
H A D | 007_basic.phpt | 2 Test fopen(), fclose() & feof() functions: basic functionality 13 Prototype: bool feof ( resource $handle ); 49 var_dump( feof($handle) ); 54 // confirm the closure, using ftell() and feof(), expect, false 56 var_dump( feof($handle) ); 76 var_dump( feof($handle) ); 81 // confirm the closure, using ftell() and feof(), expect, false 83 var_dump( feof($handle) ); 104 Warning: feof(): %d is not a valid stream resource in %s on line %d 117 Warning: feof(): %d is not a valid stream resource in %s on line %d [all …]
|
H A D | bug27508.phpt | 36 return feof($this->fp); 63 debug_zval_dump(feof($fp)); 66 debug_zval_dump(feof($fp)); 67 while ($fp && !feof($fp)) {
|
H A D | fread_fwrite_basic.phpt | 34 var_dump(feof($h)); 44 var_dump(feof($h)); 46 var_dump(feof($h)); 49 var_dump(feof($h)); 51 var_dump(feof($h));
|
H A D | bug30362.phpt | 8 for ($i = 0; ($i < 10) && !feof($resource); ++$i ) {
|
H A D | stream_get_line.phpt | 9 while ($fp && !feof($fp)) {
|
/PHP-5.5/Zend/tests/ |
H A D | bug41421.phpt | 17 feof($fp); 22 Warning: feof(): wrapper::stream_eof is not implemented! Assuming EOF in %s on line %d 27 #1 %s(%d): feof(Resource id #%d)
|
/PHP-5.5/ext/zip/examples/ |
H A D | fopen.php | 11 while (!feof($fp)) { 27 while (!feof($fp)) {
|
/PHP-5.5/ext/standard/tests/streams/ |
H A D | bug60455_03.phpt | 31 while (!feof($f)) { 36 while (!feof($f)) { 41 while (!feof($f)) {
|
H A D | proc_open_bug51800_right.phpt | 43 while (!feof($pipes[1]) || !feof($pipes[2])) {
|
H A D | proc_open_bug51800_right2.phpt | 49 while (!feof($pipes[1]) || !feof($pipes[2])) {
|
H A D | bug60455_02.phpt | 25 while (!feof($f)) {
|
H A D | bug60455_04.phpt | 26 while (!feof($f)) {
|
/PHP-5.5/sapi/cli/tests/ |
H A D | php_cli_server_009.phpt | 30 while (!feof($fp)) { 50 while (!feof($fp)) { 70 while (!feof($fp)) {
|
H A D | php_cli_server_008.phpt | 27 while (!feof($fp)) { 47 while (!feof($fp)) {
|
H A D | php_cli_server_010.phpt | 27 while (!feof($fp)) { 47 while (!feof($fp)) {
|
H A D | php_cli_server_013.phpt | 31 while (!feof($fp)) { 53 while (!feof($fp)) { 74 while (!feof($fp)) {
|
/PHP-5.5/ext/zip/tests/ |
H A D | bug49072.phpt | 2 Bug #49072 (feof never returns true for damaged file in zip) 18 while (! feof($r)) {
|
H A D | oo_stream.phpt | 22 while (!feof($fp)) { 36 while (!feof($fp)) {
|
/PHP-5.5/ext/xml/tests/ |
H A D | xml004.phpt | 14 xml_parse($xp, $data, feof($fp)); 22 xml_parse($xp, $data, feof($fp));
|
/PHP-5.5/ext/pdo_mysql/ |
H A D | get_error_codes.php | 5 while (!feof(STDIN)) {
|
/PHP-5.5/ext/tokenizer/ |
H A D | tokenizer.php | 8 while (!feof($fp)) {
|
/PHP-5.5/ext/bz2/tests/ |
H A D | bug72613.phpt | 12 while (!feof($fp)) {
|
Completed in 23 milliseconds
12345678910