PHP fclose() 函數
PHP fclose() 函數

定義和用法
fclose() 函數關閉打開的文件。
該函數如果成功則返回 TRUE,如果失敗則返回 FALSE。
語法
fclose(file)
參數 | 描述 |
---|---|
file | 必需。規定要關閉的文件。 |
實例
<?php
$file = fopen("test.txt","r");
//some code to be executed
fclose($file);
?>
$file = fopen("test.txt","r");
//some code to be executed
fclose($file);
?>

相關文章
- PHP echo 和 print 語句
- PHP 異常處理
- PHP array_chunk() 函數
- PHP array_pad() 函數
- PHP array_product() 函數
- PHP array_rand() 函數
- PHP array_uintersect_assoc() 函數
- PHP array_unique() 函數
- PHP array_unshift() 函數
- PHP array_values() 函數
- PHP asort() 函數
- PHP current() 函數
- PHP extract() 函數
- PHP in_array() 函數
- PHP 5 Directory 函數
- PHP Error 和 Logging 函數
- PHP 5 Filesystem 函數
- PHP Libxml 函數
- PHP 5 Math 函數
- PHP 雜項 函數