Not sure whether this is something Im doing wrong or just something
the filesize() function doesnt support but...
<?
$fsize1 = filesize("foo.t xt");
$fp = fopen("foo.txt" ,a);
$time = time();
fputs($fp,$time );
fclose($fp);
$fsize2 = filesize("foo.t xt");
echo $fsize1." ".$fsize2;
?>
this code always reports the $fsize1 equal to $fsize2 when surely they
should be different?
the filesize() function doesnt support but...
<?
$fsize1 = filesize("foo.t xt");
$fp = fopen("foo.txt" ,a);
$time = time();
fputs($fp,$time );
fclose($fp);
$fsize2 = filesize("foo.t xt");
echo $fsize1." ".$fsize2;
?>
this code always reports the $fsize1 equal to $fsize2 when surely they
should be different?
Comment