ID: 22234 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Open +Status: Verified Bug Type: Filesystem function related Operating System: win98 PHP Version: 4.3.0 New Comment:
This problem seems to occur on the platforms which doesn't have mmap function. Previous Comments: ------------------------------------------------------------------------ [2003-02-15 13:28:02] [EMAIL PROTECTED] if copy('file','dest') is called, and the 'file' is a 0-length file, it will fail. This causes pear install PhpDocumentor to fail on windows. To test, create an empty file "emptyfile.php" and a non-empty file "nonemptyfile.php" in the same directory as this script, and run it: <?php var_dump(copy('emptyfile.php','newfile.php')); // bool(false) var_dump(copy('nonemptyfile.php','newfile.php')); //bool(true) ?> ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=22234&edit=1