Hello !

I've some tourble w/ the following piece of code. The file to read 
doesn't contain zeros at the beginning, but the output is

a= 0 b=0

is there a problem w/ fread ? (php 4.0.6, RedHat 7.2)




<?php
$filename = "/export/html/log";
$fd = fopen( $filename, "r" );
$a = fread( $fd, 4 );
$b = fread( $fd, 4 );
printf( "a= %lx b=%lx", $a, $b);
fclose( $fd );
?>


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to