Tuesday, 27 August 2013

PHP Function fclose()

Syntax

bool fclose ( resource $handle );

Definition and Usage

The file pointed to by handle is closed.

Paramters

ParameterDescription
handleThe 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);
?>

No comments:

Post a Comment