PHP ftruncate() 函数
PHP ftruncate() 函数
完整的 PHP Filesystem 参考手册定义和用法
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");
?>
//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
完整的 PHP Filesystem 参考手册
相关文章
- PHP 变量
- PHP If Else 语句
- PHP While 循环
- PHP 面向对象
- PHP date() 函数
- PHP 文件处理
- PHP Cookie
- PHP Secure E-mails
- PHP 错误处理
- PHP JSON
- PHP array_count_values() 函数
- PHP array_intersect_assoc() 函数
- PHP array_intersect_ukey() 函数
- PHP array_uintersect_assoc() 函数
- PHP count() 函数
- PHP in_array() 函数
- PHP list() 函数
- PHP natcasesort() 函数
- PHP pos() 函数
- PHP 5 Math 函数