将打开的文件截断为指定长度(100 字节):
<?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
ftruncate() 函数将打开的文件截断为指定的长度。
ftruncate(
file,
size)
Parameter | Description |
---|---|
file | Required. Specifies the open file to truncate |
size | Required. Specifies the new file size |
返回值: | TRUE 表示成功,FALSE 表示失败。 |
---|---|
PHP 版本: | 4.0+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!