PHP ftruncate() 函數(shù)
PHP ftruncate() 函數(shù)

定義和用法
ftruncate() 函數(shù)把打開文件截斷到指定的長度。
如果成功則返回 TRUE,如果失敗則返回 FALSE。
語法
ftruncate(file,size)
參數(shù) | 描述 |
---|---|
file | 必需。規(guī)定要截斷的打開文件。 |
size | 必需。規(guī)定新的文件大小。 |
實例
<?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");
?>
//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
100

相關(guān)文章
- PHP 變量
- PHP If Else 語句
- PHP While 循環(huán)
- PHP 面向?qū)ο?/a>
- PHP date() 函數(shù)
- PHP 文件處理
- PHP Cookie
- PHP Secure E-mails
- PHP 錯誤處理
- PHP JSON
- PHP array_count_values() 函數(shù)
- PHP array_intersect_assoc() 函數(shù)
- PHP array_intersect_ukey() 函數(shù)
- PHP array_uintersect_assoc() 函數(shù)
- PHP count() 函數(shù)
- PHP in_array() 函數(shù)
- PHP list() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP pos() 函數(shù)
- PHP 5 Math 函數(shù)