PHP fclose() 函數(shù)
PHP fclose() 函數(shù)

定義和用法
fclose() 函數(shù)關(guān)閉打開的文件。
該函數(shù)如果成功則返回 TRUE,如果失敗則返回 FALSE。
語法
fclose(file)
參數(shù) | 描述 |
---|---|
file | 必需。規(guī)定要關(guān)閉的文件。 |
實例
<?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);
?>

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