<สมบูรณ์ PHP Filesystem อ้างอิง
ความหมายและการใช้งาน
clearstatcache() ฟังก์ชั่นล้างแคชสถานะไฟล์
PHP เก็บข้อมูลสำหรับฟังก์ชั่นบางอย่างสำหรับประสิทธิภาพที่ดีขึ้น หากไฟล์จะถูกตรวจสอบหลายครั้งในสคริปต์คุณอาจต้องการที่จะหลีกเลี่ยงการแคชเพื่อให้ได้ผลลัพธ์ที่ถูกต้อง การทำเช่นนี้ใช้ clearstatcache() ฟังก์ชั่น
วากยสัมพันธ์
clearstatcache()
เคล็ดลับและคำอธิบาย
Tip: ฟังก์ชั่นที่มีการแคช:
- stat()
- lstat()
- file_exists()
- is_writable()
- is_readable()
- is_executable()
- is_file()
- is_dir()
- is_link()
- filectime()
- fileatime()
- filemtime()
- fileinode()
- filegroup()
- fileowner()
- filesize()
- filetype()
- fileperms()
ตัวอย่าง
<?php
//check filesize
echo filesize("test.txt");
echo "<br />";
$file = fopen("test.txt", "a+");
// truncate file
ftruncate($file,100);
fclose($file);
//Clear cache and check filesize again
clearstatcache();
echo filesize("test.txt");
?>
การส่งออกของโค้ดข้างต้นอาจจะ:
792
100
<สมบูรณ์ PHP Filesystem อ้างอิง