首頁 >後端開發 >php教程 >在PHP中的clearstatcache()函數

在PHP中的clearstatcache()函數

WBOY
WBOY轉載
2023-09-07 09:33:03969瀏覽

在PHP中的clearstatcache()函數

clearstatcache() 函數用於清除檔案狀態快取。

PHP 快取以下函數傳回的資訊−

  • stat()
  • #lstat()
  • file_exists()
  • # is_writable()
  • is_readable()
  • is_executable()

is_file()

is_dir()

filegroup()

    fileowner()
  • filesize()

filetype()

fileperms()

##這樣做是為了提供更好的性能。

語法

void clearstatecache()

參數

NA#######傳回值######clearstatcache()函數不傳回任何值。 ######範例######以下是一個範例,用於檢查檔案「tmp.txt」並清除快取。 ###### 線上示範###
<?php
   $file = fopen("tmp.txt", "a+");
   // Clear cache
   clearstatcache();
   echo "Cache cleared!";
?>
###輸出###
Cache cleared!
###

以上是在PHP中的clearstatcache()函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除