No cache version.

Caching disabled. Default setting for this page:enabled (code LNG204)
If the display is too slow, you can disable the user mode to view the cached version.

Rechercher une fonction PHP

ftruncate

(PHP 4, PHP 5, PHP 7)

ftruncateTruncates a file to a given length

Description

ftruncate ( resource $handle , int $size ) : bool

Takes the filepointer, handle, and truncates the file to length, size.

PHP: ftruncate - Manual Home of Manuel PHP  Contents Haut

Parameters

handle

The file pointer.

Note:

The handle must be open for writing.

size

The size to truncate to.

Note:

If size is larger than the file then the file is extended with null bytes.

If size is smaller than the file then the file is truncated to that size.

PHP: ftruncate - Manual Home of Manuel PHP  Contents Haut

Return Values

Returns TRUE on success or FALSE on failure.

PHP: ftruncate - Manual Home of Manuel PHP  Contents Haut

Examples

Example #1 File truncation example

<?php
$filename 
'lorem_ipsum.txt';

$handle fopen($filename'r+');
ftruncate($handlerand(1filesize($filename)));
rewind($handle);
echo 
fread($handlefilesize($filename));
fclose($handle);
?>

PHP: ftruncate - Manual Home of Manuel PHP  Contents Haut

Notes

Note:

The file pointer is not changed.

PHP: ftruncate - Manual Home of Manuel PHP  Contents Haut

See Also

Find a PHP function
Error Infobrol

Can not display this page of the Infobrol website

Type of error (18-01)

Unknown format specifier "&"

Please try again in a few minutes…

Return to the home page




Steph