<完整PHP文件系統參考
定義和用法
該fclose()函數關閉一個打開的文件。
該函數返回TRUE或FALSE的成功失敗。
句法
fclose(file)
參數 | 描述 |
---|---|
file | 需要。 指定文件關閉 |
例
<?php
$file = fopen("test.txt","r");
//some code to be executed
fclose($file);
?>
<完整PHP文件系統參考
該fclose()函數關閉一個打開的文件。
該函數返回TRUE或FALSE的成功失敗。
fclose(file)
參數 | 描述 |
---|---|
file | 需要。 指定文件關閉 |
<?php
$file = fopen("test.txt","r");
//some code to be executed
fclose($file);
?>