.

Tuesday, October 25, 2011

Home » » PHP code - fclose

PHP code - fclose

fclose() function is used to close an open file:



Syntax:
fclose()
Example:
<?php
$file = fopen("phpcode.txt","r");

//some code to be executed

fclose($file);
?>

0 komentar:

Post a Comment