Home Tutorial Php Phpfiles PHP function ftruncate and example

 
 

PHP function ftruncate and example
Posted on: October 30, 2009 at 12:00 AM
In this segment of the PHP tutorial we will learn the ftruncate function of the file handling

Syntax

int ftruncate(file_handle,length)

  • ftruncate function truncates the file content with the given length.
  • And it returns the truncated file size.

PHP ftruncate() Function Example

Code

<?php
$file1
=fopen("bb.txt","r");
echo
"file size is ".filesize("bb.txt");
ftruncate($file1,100);
echo
"<br>now the file size is ".filesize("bb.txt");
?>

Output

file size is 300
now the file size is 200

Related Tags for PHP function ftruncate and example :


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.