Home
last modified time | relevance | path

Searched refs:fclose (Results 26 – 50 of 1428) sorted by relevance

12345678910>>...58

/PHP-5.5/ext/standard/tests/file/
H A D007_variation23.phpt2 Test fopen and fclose() functions - usage variations - "xb" mode
12 fclose() function:
13 Prototype: bool fclose ( resource $handle );
17 /* Test fopen() and fclose(): Opening the file in "xb" mode,
21 and fclose function
27 echo "*** Test fopen() & fclose() functions: with 'xb' mode ***\n";
37 var_dump( fclose($file_handle) ); //Check for close operation on the file handle
46 *** Test fopen() & fclose() functions: with 'xb' mode ***
H A D007_variation7.phpt2 Test fopen and fclose() functions - usage variations - "x" mode
12 fclose() function:
13 Prototype: bool fclose ( resource $handle );
17 /* Test fopen() and fclose(): Opening the file in "x" mode,
21 and fclose function
27 echo "*** Test fopen() & fclose() functions: with 'x' mode ***\n";
37 var_dump( fclose($file_handle) ); //Check for close operation on the file handle
46 *** Test fopen() & fclose() functions: with 'x' mode ***
H A D007_variation8.phpt2 Test fopen and fclose() functions - usage variations - "x+" mode
12 fclose() function:
13 Prototype: bool fclose ( resource $handle );
17 /* Test fopen() and fclose(): Opening the file in "x+" mode,
21 and fclose function
27 echo "*** Test fopen() & fclose() functions: with 'x+' mode ***\n";
37 var_dump( fclose($file_handle) ); //Check for close operation on the file handle
46 *** Test fopen() & fclose() functions: with 'x+' mode ***
H A D007_variation11.phpt2 Test fopen and fclose() functions - usage variations - "wt" mode
17 fclose() function:
18 Prototype: bool fclose ( resource $handle );
22 /* Test fopen() and fclose(): Opening the file in "wt" mode,
26 and fclose function
35 echo "*** Test fopen() & fclose() functions: with 'wt' mode ***\n";
45 var_dump( fclose($file_handle) ); //Check for close operation on the file handle
50 fclose( fopen($file, "wt") ); //Opening the existing data file again in "wt" mode
55 fclose( fopen($file, "wt") ); //Opening the non-existing file in "wt" mode, which will be created
63 *** Test fopen() & fclose() functions: with 'wt' mode ***
H A D007_variation12-win32.phpt2 Test fopen and fclose() functions - usage variations - "w+t" mode
17 fclose() function:
18 Prototype: bool fclose ( resource $handle );
22 /* Test fopen() and fclose(): Opening the file in "w+t" mode,
26 and fclose function
35 echo "*** Test fopen() & fclose() functions: with 'w+t' mode ***\n";
45 var_dump( fclose($file_handle) ); //Check for close operation on the file handle
50 fclose( fopen($file, "w+t") ); //Opening the existing data file again in "w+t" mode
55 fclose( fopen($file, "w+t") ); //Opening the non-existing file in "w+t" mode, which will be created
63 *** Test fopen() & fclose() functions: with 'w+t' mode ***
H A D007_variation12.phpt2 Test fopen and fclose() functions - usage variations - "w+t" mode
17 fclose() function:
18 Prototype: bool fclose ( resource $handle );
22 /* Test fopen() and fclose(): Opening the file in "w+t" mode,
26 and fclose function
35 echo "*** Test fopen() & fclose() functions: with 'w+t' mode ***\n";
45 var_dump( fclose($file_handle) ); //Check for close operation on the file handle
50 fclose( fopen($file, "w+t") ); //Opening the existing data file again in "w+t" mode
55 fclose( fopen($file, "w+t") ); //Opening the non-existing file in "w+t" mode, which will be created
63 *** Test fopen() & fclose() functions: with 'w+t' mode ***
H A D007_variation20.phpt2 Test fopen and fclose() functions - usage variations - "w+b" mode
12 fclose() function:
13 Prototype: bool fclose ( resource $handle );
17 /* Test fopen() and fclose(): Opening the file in "w+b" mode,
21 and fclose function
30 echo "*** Test fopen() & fclose() functions: with 'w+b' mode ***\n";
40 var_dump( fclose($file_handle) ); //Check for close operation on the file handle
45 fclose( fopen($file, "w+b") ); //Opening the existing data file again in "w+b" mode
50 fclose( fopen($file, "w+b") ); //Opening the non-existing file in "w+b" mode, which will be created
58 *** Test fopen() & fclose() functions: with 'w+b' mode ***
H A D007_variation16.phpt2 Test fopen and fclose() functions - usage variations - "x+t" mode
12 fclose() function:
13 Prototype: bool fclose ( resource $handle );
17 /* Test fopen() and fclose(): Opening the file in "x+t" mode,
21 and fclose function
27 echo "*** Test fopen() & fclose() functions: with 'x+t' mode ***\n";
37 var_dump( fclose($file_handle) ); //Check for close operation on the file handle
46 *** Test fopen() & fclose() functions: with 'x+t' mode ***
H A D007_variation24.phpt2 Test fopen and fclose() functions - usage variations - "x+b" mode
12 fclose() function:
13 Prototype: bool fclose ( resource $handle );
17 /* Test fopen() and fclose(): Opening the file in "x+b" mode,
21 and fclose function
27 echo "*** Test fopen() & fclose() functions: with 'x+b' mode ***\n";
37 var_dump( fclose($file_handle) ); //Check for close operation on the file handle
46 *** Test fopen() & fclose() functions: with 'x+b' mode ***
H A Dfopen_variation5.phpt67 fclose($h);
73 fclose($h);
79 fclose($h);
84 fclose($h);
90 fclose($h);
95 fclose($h);
104 fclose($h);
110 fclose($h);
115 fclose($h);
H A Dfopen_variation8.phpt66 fclose($h);
72 fclose($h);
78 fclose($h);
83 fclose($h);
89 fclose($h);
94 fclose($h);
103 fclose($h);
109 fclose($h);
114 fclose($h);
H A Dstream_supports_lock.phpt10 fclose($fp);
15 fclose($fp);
20 fclose($fp);
25 fclose($fp);
H A Dfscanf.phpt17 fclose($fp);
22 fclose($fp);
28 fclose($fp);
36 fclose($fp);
44 fclose($fp);
52 fclose($fp);
H A Dfopen_variation6.phpt19 fclose($h);
23 fclose($h);
28 fclose($h);
33 fclose($h);
H A Dfopen_variation10-win32.phpt54 fclose($h);
58 fclose($h);
62 fclose($h);
75 fclose($h);
101 Warning: fclose() expects parameter 1 to be resource, boolean given in %s on line %d
108 Warning: fclose() expects parameter 1 to be resource, boolean given in %s on line %d
115 Warning: fclose() expects parameter 1 to be resource, boolean given in %s on line %d
125 Warning: fclose() expects parameter 1 to be resource, boolean given in %s on line %d
147 Warning: fclose() expects parameter 1 to be resource, boolean given in %s on line %d
H A Dfopen_variation11-win32.phpt53 fclose($h);
57 fclose($h);
61 fclose($h);
74 fclose($h);
99 Warning: fclose() expects parameter 1 to be resource, boolean given in %s on line %d
106 Warning: fclose() expects parameter 1 to be resource, boolean given in %s on line %d
113 Warning: fclose() expects parameter 1 to be resource, boolean given in %s on line %d
123 Warning: fclose() expects parameter 1 to be resource, boolean given in %s on line %d
145 Warning: fclose() expects parameter 1 to be resource, boolean given in %s on line %d
H A Dbug38086.phpt15 fclose($src); fclose($dest);
29 fclose($src); fclose($dest);
H A Dfilesize_variation4-win32.phpt28 fclose($file_handle);
36 fclose($file_handle);
43 fclose($file_handle);
50 fclose($file_handle);
57 fclose($file_handle);
64 fclose($file_handle);
69 fclose( fopen($filename, "w") );
75 fclose( fopen($filename, "w") );
/PHP-5.5/ext/standard/tests/network/
H A Dshutdown.phpt48 fclose($socket);
61 fclose($socket);
67 fclose($client1);
68 fclose($client2);
69 fclose($server);
H A Dtcp4loop.phpt35 fclose($client);
36 fclose($socket);
37 fclose($server);
H A Dunixloop.phpt37 fclose($client);
38 fclose($socket);
39 fclose($server);
/PHP-5.5/ext/gd/libgd/
H A Dgd2copypal.c29 fclose (in); in main()
43 fclose (in); in main()
60 fclose (out); in main()
/PHP-5.5/ext/standard/tests/streams/
H A Dbug54946.phpt8 fclose($stream);
19 fclose($stream);
30 fclose($stream);
/PHP-5.5/ext/zlib/tests/
H A Dzlib_filter_inflate2.phpt10 fclose($a);
15 fclose($fp);
23 fclose($fp);
29 fclose($fp);
/PHP-5.5/ext/iconv/tests/
H A Diconv_stream_filter_delimiter.phpt13 fclose($fp);
20 fclose($fp);
27 fclose($fp);
34 fclose($fp);

Completed in 37 milliseconds

12345678910>>...58