+
<?php $handle = fopen( "c:/temp/test.txt", "r" );
while(( $data = fgetc( $handle ) )) { echo $data; // 1文字づつ表示する。 }
fclose($handle); ?>