您现在的位置是:首页 > PHP函数

李清波 2021-06-17 PHP函数 1422 复制当前网址

ftruncate



PHP ftruncate() 函数

定义和用法

ftruncate() 函数把文件截断到指定的长度。


语法

ftruncate(file,size)

参数描述
file必需。规定要截断的打开文件。
size必需。规定新的文件大小。


说明

接受文件指针 file 作为参数,并将文件大小截取为 size。如果成功则返回 TRUE,否则返回 FALSE。


提示和注释

注释:文件只会在 append 模式下改变。在 write 模式下,必须加上 fseek() 操作。

注释:在 PHP 4.3.3 之前,ftruncate() 在成功时返回一个整数值 1,而不是布尔值的 TRUE。


例子

<?php//检查文件大小echo filesize("test.txt");
echo "<br />";

$file = fopen("test.txt", "a+");
ftruncate($file,100);
fclose($file);//清空缓存,再次检查文件大小clearstatcache();
echo filesize("test.txt");
?>

输出类似:

792
100


文章来源:https://liqingbo.com/blog-612.html

上一篇:fwrite

下一篇:ftell

评论