<完整PHP文件系統參考
定義和用法
的ftruncate()函數截斷一個打開的文件,以指定的長度。
返回TRUE成功,失敗返回FALSE。
句法
ftruncate(file,size)
參數 | 描述 |
---|---|
file | 需要。 指定打開的文件截斷 |
size | 需要。 指定新的文件大小 |
例
<?php
//check filesize
echo filesize("test.txt");
echo "<br />";
$file = fopen("test.txt", "a+");
ftruncate($file,100);
fclose($file);
//Clear cache and check filesize again
clearstatcache();
echo filesize("test.txt");
?>
代碼的輸出將是:
792
100
<完整PHP文件系統參考