ftruncate() 函数把打开文件截断到指定的长度。
如果成功则返回 TRUE,如果失败则返回 FALSE。
ftruncate(file,size)
参数 | 描述 |
---|---|
file | 必需。规定要截断的打开文件。 |
size | 必需。规定新的文件大小。 |
<?php//check filesizeecho filesize("test.txt");echo "<br />";$file = fopen("test.txt", "a+");ftruncate($file,100);fclose($file);//Clear cache and check filesize againclearstatcache();echo filesize("test.txt");?>
上面的代码将输出:
792100