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