PHP ftruncate() Function

Truncates an open file to the specified length (100 bytes)

Definition and Usage

The ftruncate() function truncates an open file to the specified length.

Syntax

ftruncate(file, size)

Parameter Values

Parameter Description
file Required. Specifies the open file to truncate
size Required. Specifies the new file size

Technical Details

Return Value: TRUE on success, or FALSE on failure.
PHP Version: 4.0+

❮ PHP Filesystem Reference