clearstatcache() 函數用於清除檔案狀態快取。
PHP 快取以下函數傳回的資訊−
is_file()
fileperms()
語法
void clearstatecache()
參數
NA#######傳回值######clearstatcache()函數不傳回任何值。 ######範例######以下是一個範例,用於檢查檔案「tmp.txt」並清除快取。 ###### 線上示範###<?php $file = fopen("tmp.txt", "a+"); // Clear cache clearstatcache(); echo "Cache cleared!"; ?>
Cache cleared!
以上是在PHP中的clearstatcache()函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!