search
  • Sign In
  • Sign Up
Password reset successful

Follow the proiects vou are interested in andi aet the latestnews about them taster

Programming Dictionary

Online technical manual for service programmers
Popular searches:
Dictionary homepage Server PHP php fclose() function
php fclose() function Detailed instructions for use

php fclose() function

Chinese translation Recent Updates: 2018-04-19 09:29:08

adj.Intimate;close;close

vt.off;end;bring close

vi.close;off;end

adv.closely

n.End

Third person singular: closes Present participle: closing Past tense: closed Past participle: closed Comparative: closer Superlative: closest

php fclose() function syntax

Function: Close an open file

Syntax: fclose(file)

Parameters:

ParameterDescription
file Required. Specifies the file to be closed.

Description: Returns true if successful, otherwise returns false. The file pointer must be valid and successfully opened via fopen() or fsockopen().

php fclose() function example

<?php
$file = fopen("./test.txt","r");
echo fclose($file);
?>
php fclose() function