2009年7月14日火曜日

phpでファイルを1行読み込み

$fp = fopen("test.txt",'r');
while(!feof($fp)){
$line = fgets($fp);
}
fclose($fp);
?>

0 件のコメント:

コメントを投稿