php fclose()函數用於關閉一個已開啟的檔案指標。
php fclose()函數語法
作用:關閉一個開啟檔案
語法:
fclose(file)
參數:
file 必要。規定要關閉的文件。
說明:如果成功則回傳 true,否則回傳 false。檔案指標必須有效,並且是透過 fopen() 或 fsockopen() 成功開啟的。
php fclose()函數 範例
<?php $file = fopen("./test.txt","r"); echo fclose($file); ?>
這篇文章是關於PHP fclose函數的介紹,希望對需要的朋友有幫助!
以上是fclose函數怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!