PHPでファイル入出力

ファイル読み込み

<?php

$data = file_get_contents("sample.txt");

?>
<?php

$fp = fopen("sample.txt", "r");
while ($line = fgets($fp)) {
  echo "$line<br />";
}
fclose($fp);

?>

ファイル書き込み

<?php

file_put_contents("sample.txt", "ファイルへの書き込みサンプル");

?>
<?php

$fp = fopen("sample.txt", "w");
fwrite($fp, "ファイルへの書き込みサンプル");
fclose($fp);

?>

ファイル追記

<?php

$fp = fopen("sample.txt", "a");
fwrite($fp, "ファイルへの追記サンプル");
fclose($fp);

?>

ネタ元