PHP 5 入門 テキスト ファイルの読み書き (2)
??
================
ファイルの書き込み
================
$realFiePath = "D:/test.txt";
$fileContent = "テスト 2011 03 12。";
?
$file = fopen($realFiePath, 'wb');
fwrite($file, $fileContent );
fclose($file);
?
?
===============
ファイルを読み取る
===============
$realFiePath = "D:/test.txt";
$size = intval(sprintf("%u", filesize($realFiePath)));
$handle = fopen($realFiePath, "rb");
$fileContent = "" ??while (!feof($handle)) {
?????? $fileContent .= fread($handle, $size);
?????? ob_flush(); >? ?? ??flush();
??}
??fclose($handle);
?