Voting

: min(five, five)?
(Example: nine)

The Note You're Voting On

webmaster at eclipse org
17 years ago
On 64-bit platforms, this seems quite reliable for getting the filesize of files > 4GB

<?php
$a
= fopen($filename, 'r');
fseek($a, 0, SEEK_END);
$filesize = ftell($a);
fclose($a);
?>

<< Back to user notes page

To Top