Learning PHP
Advanced PHP
PHP Function Reference
PHP Useful Resources
Selected Reading
© 2011 TutorialsPoint.COM
|
PHP Function fclose()
Syntax
bool fclose ( resource $handle );
|
Definition and Usage
The file pointed to by handle is closed.
Paramters
Parameter | Description |
handle | The file pointer must be valid, and must point to a file successfully opened by fopen() or fsockopen(). |
Return Value
Returns TRUE on success or FALSE on failure.
Example
Following is the usage of this function:
<?php
$handle = fopen('example.txt', 'r');
fclose($handle);
?>
|
|
|
|