/PHP-8.1/ext/gd/libgd/ |
H A D | gdtest.c | 49 fclose (in); in main() 62 fclose (out); in main() 71 fclose (in); in main() 94 fclose (out); in main() 103 fclose (in); in main() 129 fclose (out); in main() 138 fclose (in); in main() 166 fclose (in); in main() 215 fclose (in); in main() 225 fclose (in); in main() [all …]
|
/PHP-8.1/ext/standard/tests/file/ |
H A D | stream_copy_to_stream.phpt | 15 fclose($src); fclose($dest); 27 fclose($src); fclose($dest); 42 fclose($src); fclose($dest); 57 fclose($src); fclose($dest); 72 fclose($src); fclose($dest); 88 fclose($src); fclose($dest); 103 fclose($src); fclose($dest);
|
H A D | ftruncate.phpt | 12 fclose($fp); 17 fclose($fp); 24 fclose($fp); 29 fclose($fp); 40 fclose($fp);
|
H A D | 007_variation1.phpt | 2 Test fopen and fclose() functions - usage variations - "r" mode 6 /* Test fopen() and fclose(): Opening the file in "r" mode, 9 and fclose function 18 echo "*** Test fopen() & fclose() functions: with 'r' mode ***\n"; 25 var_dump( fclose($file_handle) ); //Check for close operation on the file handle 33 *** Test fopen() & fclose() functions: with 'r' mode ***
|
H A D | 007_variation17.phpt | 2 Test fopen and fclose() functions - usage variations - "rb" mode 6 /* Test fopen() and fclose(): Opening the file in "rb" mode, 9 and fclose function 18 echo "*** Test fopen() & fclose() functions: with 'rb' mode ***\n"; 25 var_dump( fclose($file_handle) ); //Check for close operation on the file handle 33 *** Test fopen() & fclose() functions: with 'rb' mode ***
|
H A D | 007_variation9.phpt | 2 Test fopen and fclose() functions - usage variations - "rt" mode 6 /* Test fopen() and fclose(): Opening the file in "rt" mode, 9 and fclose function 18 echo "*** Test fopen() & fclose() functions: with 'rt' mode ***\n"; 25 var_dump( fclose($file_handle) ); //Check for close operation on the file handle 33 *** Test fopen() & fclose() functions: with 'rt' mode ***
|
H A D | 007_variation14.phpt | 2 Test fopen and fclose() functions - usage variations - "a+t" mode 6 /* Test fopen() and fclose(): Opening the file in "a+t" mode, 9 and fclose function 18 echo "*** Test fopen() & fclose() functions: with 'a+t' mode ***\n"; 26 var_dump( fclose($file_handle) ); //Check for close operation on the file handle 30 fclose( fopen($file, "a+t") ); //Opening the non-existing file in "a+t" mode, which will be created 38 *** Test fopen() & fclose() functions: with 'a+t' mode ***
|
H A D | 007_variation22.phpt | 2 Test fopen and fclose() functions - usage variations - "a+b" mode 6 /* Test fopen() and fclose(): Opening the file in "a+b" mode, 9 and fclose function 18 echo "*** Test fopen() & fclose() functions: with 'a+b' mode ***\n"; 26 var_dump( fclose($file_handle) ); //Check for close operation on the file handle 30 fclose( fopen($file, "a+b") ); //Opening the non-existing file in "a+b" mode, which will be created 38 *** Test fopen() & fclose() functions: with 'a+b' mode ***
|
H A D | 007_variation6.phpt | 2 Test fopen and fclose() functions - usage variations - "a+" mode 6 /* Test fopen() and fclose(): Opening the file in "a+" mode, 9 and fclose function 18 echo "*** Test fopen() & fclose() functions: with 'a+' mode ***\n"; 26 var_dump( fclose($file_handle) ); //Check for close operation on the file handle 30 fclose( fopen($file, "a+") ); //Opening the non-existing file in "a+" mode, which will be created 38 *** Test fopen() & fclose() functions: with 'a+' mode ***
|
H A D | fopen_variation5.phpt | 58 fclose($h); 64 fclose($h); 70 fclose($h); 75 fclose($h); 81 fclose($h); 86 fclose($h); 95 fclose($h); 101 fclose($h); 106 fclose($h);
|
H A D | fopen_variation8.phpt | 57 fclose($h); 63 fclose($h); 69 fclose($h); 74 fclose($h); 80 fclose($h); 85 fclose($h); 94 fclose($h); 100 fclose($h); 105 fclose($h);
|
H A D | 007_variation21.phpt | 2 Test fopen and fclose() functions - usage variations - "ab" mode 6 /* Test fopen() and fclose(): Opening the file in "ab" mode, 9 and fclose function 18 echo "*** Test fopen() & fclose() functions: with 'ab' mode ***\n"; 26 var_dump( fclose($file_handle) ); //Check for close operation on the file handle 31 fclose( fopen($file, "ab") ); //Opening the non-existing file in "ab" mode, which will be created 39 *** Test fopen() & fclose() functions: with 'ab' mode ***
|
H A D | 007_variation5.phpt | 2 Test fopen and fclose() functions - usage variations - "a" mode 6 /* Test fopen() and fclose(): Opening the file in "a" mode, 9 and fclose function 18 echo "*** Test fopen() & fclose() functions: with 'a' mode ***\n"; 26 var_dump( fclose($file_handle) ); //Check for close operation on the file handle 31 fclose( fopen($file, "a") ); //Opening the non-existing file in "a" mode, which will be created 39 *** Test fopen() & fclose() functions: with 'a' mode ***
|
H A D | fscanf.phpt | 13 fclose($fp); 18 fclose($fp); 28 fclose($fp); 40 fclose($fp); 52 fclose($fp); 60 fclose($fp);
|
H A D | fopen_variation6.phpt | 13 fclose($h); 17 fclose($h); 22 fclose($h); 27 fclose($h);
|
H A D | 007_variation4.phpt | 2 Test fopen and fclose() functions - usage variations - "w+" mode 6 /* Test fopen() and fclose(): Opening the file in "w+" mode, 10 and fclose function 19 echo "*** Test fopen() & fclose() functions: with 'w+' mode ***\n"; 29 var_dump( fclose($file_handle) ); //Check for close operation on the file handle 34 fclose( fopen($file, "w+") ); //Opening the existing data file again in "w+" mode 39 fclose( fopen($file, "w+") ); //Opening the non-existing file in "w+" mode, which will be created 47 *** Test fopen() & fclose() functions: with 'w+' mode ***
|
H A D | 007_variation13-win32.phpt | 2 Test fopen and fclose() functions - usage variations - "at" mode 11 /* Test fopen() and fclose(): Opening the file in "at" mode, 14 and fclose function 23 echo "*** Test fopen() & fclose() functions: with 'at' mode ***\n"; 31 var_dump( fclose($file_handle) ); //Check for close operation on the file handle 36 fclose( fopen($file, "at") ); //Opening the non-existing file in "at" mode, which will be created 44 *** Test fopen() & fclose() functions: with 'at' mode ***
|
H A D | 007_variation13.phpt | 2 Test fopen and fclose() functions - usage variations - "at" mode 11 /* Test fopen() and fclose(): Opening the file in "at" mode, 14 and fclose function 23 echo "*** Test fopen() & fclose() functions: with 'at' mode ***\n"; 31 var_dump( fclose($file_handle) ); //Check for close operation on the file handle 36 fclose( fopen($file, "at") ); //Opening the non-existing file in "at" mode, which will be created 44 *** Test fopen() & fclose() functions: with 'at' mode ***
|
H A D | stream_supports_lock.phpt | 10 fclose($fp); 15 fclose($fp); 20 fclose($fp); 25 fclose($fp);
|
H A D | 007_variation10.phpt | 2 Test fopen and fclose() functions - usage variations - "r+t" mode 6 /* Test fopen() and fclose(): Opening the file in "r+t" mode, 9 and fclose function 18 echo "*** Test fopen() & fclose() functions: with 'r+t' mode ***\n"; 27 var_dump( fclose($file_handle) ); //Check for close operation on the file handle 35 *** Test fopen() & fclose() functions: with 'r+t' mode ***
|
H A D | 007_variation18.phpt | 2 Test fopen and fclose() functions - usage variations - "r+b" mode 6 /* Test fopen() and fclose(): Opening the file in "r+b" mode, 9 and fclose function 18 echo "*** Test fopen() & fclose() functions: with 'r+b' mode ***\n"; 27 var_dump( fclose($file_handle) ); //Check for close operation on the file handle 35 *** Test fopen() & fclose() functions: with 'r+b' mode ***
|
/PHP-8.1/ext/phar/tests/ |
H A D | phar_stub.phpt | 25 fclose($fp); 33 fclose($fp); 39 fclose($fp); 44 fclose($fp); 48 fclose($fp); 52 fclose($fp); 59 fclose($fp); 66 fclose($fp); 75 fclose($fp);
|
/PHP-8.1/ext/standard/tests/general_functions/ |
H A D | bug34794.phpt | 17 fclose($pipes1[0]); 18 fclose($pipes1[1]); 22 fclose($pipes2[0]); 23 fclose($pipes2[1]);
|
/PHP-8.1/Zend/tests/ |
H A D | bug68887.phpt | 5 fclose(fopen("php://temp","w+")); 7 fclose(fopen("php://temp","w+")); 9 fclose(fopen("php://temp","w+"));
|
/PHP-8.1/ext/xmlwriter/tests/ |
H A D | bug79029.phpt | 14 fclose(@end(get_resources())); 19 fclose(@end(get_resources())); 29 Warning: fclose(): %d is not a valid stream resource in %sbug79029.php on line %d 31 Warning: fclose(): %d is not a valid stream resource in %sbug79029.php on line %d
|