Home
last modified time | relevance | path

Searched refs:fclose (Results 1 – 25 of 1061) sorted by relevance

12345678910>>...43

/php-src/ext/gd/libgd/
H A Dgdtest.c49 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-src/ext/phar/tests/
H A Dphar_stub.phpt25 fclose($fp);
33 fclose($fp);
39 fclose($fp);
44 fclose($fp);
48 fclose($fp);
52 fclose($fp);
67 fclose($fp);
71 fclose($fp);
77 fclose($fp);
84 fclose($fp);
[all …]
/php-src/ext/standard/tests/file/
H A Dstream_copy_to_stream.phpt17 fclose($src); fclose($dest);
31 fclose($src); fclose($dest);
48 fclose($src); fclose($dest);
65 fclose($src); fclose($dest);
82 fclose($src); fclose($dest);
100 fclose($src); fclose($dest);
117 fclose($src); fclose($dest);
H A Dftruncate.phpt12 fclose($fp);
17 fclose($fp);
24 fclose($fp);
29 fclose($fp);
40 fclose($fp);
H A D007_variation17.phpt2 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
34 *** Test fopen() & fclose() functions: with 'rb' mode ***
H A D007_variation1.phpt2 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
34 *** Test fopen() & fclose() functions: with 'r' mode ***
H A D007_variation9.phpt2 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
34 *** Test fopen() & fclose() functions: with 'rt' mode ***
H A D007_variation14.phpt2 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
39 *** Test fopen() & fclose() functions: with 'a+t' mode ***
H A D007_variation22.phpt2 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
39 *** Test fopen() & fclose() functions: with 'a+b' mode ***
H A D007_variation6.phpt2 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
39 *** Test fopen() & fclose() functions: with 'a+' mode ***
H A Dfopen_variation5.phpt58 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 Dfopen_variation8.phpt57 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 D007_variation21.phpt2 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
40 *** Test fopen() & fclose() functions: with 'ab' mode ***
H A D007_variation5.phpt2 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
40 *** Test fopen() & fclose() functions: with 'a' mode ***
H A Dfscanf.phpt13 fclose($fp);
18 fclose($fp);
28 fclose($fp);
40 fclose($fp);
52 fclose($fp);
60 fclose($fp);
H A Dfopen_variation6.phpt13 fclose($h);
17 fclose($h);
22 fclose($h);
27 fclose($h);
H A D007_variation4.phpt2 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
48 *** Test fopen() & fclose() functions: with 'w+' mode ***
H A D007_variation13-win32.phpt2 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
45 *** Test fopen() & fclose() functions: with 'at' mode ***
H A D007_variation13.phpt2 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
45 *** Test fopen() & fclose() functions: with 'at' mode ***
H A D007_variation18.phpt2 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
36 *** Test fopen() & fclose() functions: with 'r+b' mode ***
H A D007_variation2.phpt2 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";
27 var_dump( fclose($file_handle) ); //Check for close operation on the file handle
36 *** Test fopen() & fclose() functions: with 'r+' mode ***
/php-src/ext/spl/tests/
H A Dbug81691.phpt2 Bug #81691 fclose on SplFileObject stream
7 fclose(end($resources));
13 Warning: fclose(): %d is not a valid stream resource in %s on line %d
/php-src/ext/standard/tests/general_functions/
H A Dbug34794.phpt17 fclose($pipes1[0]);
18 fclose($pipes1[1]);
22 fclose($pipes2[0]);
23 fclose($pipes2[1]);
/php-src/Zend/tests/
H A Dbug68887.phpt5 fclose(fopen("php://temp","w+"));
7 fclose(fopen("php://temp","w+"));
9 fclose(fopen("php://temp","w+"));
/php-src/ext/xmlwriter/tests/
H A Dbug79029.phpt14 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

Completed in 45 milliseconds

12345678910>>...43