时间:2021-07-01 10:21:17 帮助过:21人阅读
输出下面的结果:
//check filesize
echo filesize("test.txt");
echo "
";
$file = fopen("test.txt", "a+");
// truncate file
ftruncate($file,100);
fclose($file);//Clear cache and check filesize againcle
arstatcache();
echo filesize("test.txt");
?>
上述代码将
http://www.bkjia.com/PHPjc/321402.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/321402.htmlTechArticle定义和用法 clearstatcache()函数的作用是:清除文件状态缓存。 PHP的缓存数据对更快更好的运行函数是非常有利的。如果一个文件在脚本中测...