php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #16211 ftruncate() won't truncate file
Submitted: 2002-03-21 16:28 UTC Modified: 2002-03-21 17:05 UTC
From: web-php-bugs at sklar dot com Assigned:
Status: Closed Package: Filesystem function related
PHP Version: 4.0CVS-2002-03-21 OS: Red Hat Linux 7.1 / kernel 2.4.4
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: web-php-bugs at sklar dot com
New email:
PHP Version: OS:

 

 [2002-03-21 16:28 UTC] web-php-bugs at sklar dot com
Under the latest CVS, the following script fails (ftruncate() returns an error and doesn't truncate the file) but under PHP 4.1.2, it works fine:

<?php

if (! $fp = fopen('test','r+')) {
    die("Can't open test");
}

if (! ftruncate($fp,0)) {
    die("Can't truncate");

}

fclose($fp);

?>

(The file "test" exists and has some text in it.)

I get the same results whether the mode passed to fopen() is "r", "r+", "a", or "a+" (with "w" or "w+", the call to ftruncate() still fails, but the file is truncated due to the nature of the "w" fopen mode).


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-03-21 17:05 UTC] mfischer@php.net
This bug has been fixed in CVS.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Dec 21 18:01:29 2024 UTC