Posted by Andy Hassall on 06/14/05 00:48
On Mon, 13 Jun 2005 23:18:15 +0200, "Wolfgang Werners-Lucchini"
<wwl@musensturm.de> wrote:
>The code here outputs '0'. Why?
>----------------------------
>$filename = "test.dat";
>if (!file_exists($filename)) {
> touch($filename); // Create blank file
> chmod($filename,0666);
>}
>$fp=fopen($filename,'r');
>if ($fp && !feof($fp)) echo ftell($fp); // should output nothing!
>fclose($fp);
What makes you think it should output nothing?
--
Andy Hassall / <andy@andyh.co.uk> / <http://www.andyh.co.uk>
<http://www.andyhsoftware.co.uk/space> Space: disk usage analysis tool
[Back to original message]
|