PHPメモ:ファイル読み込み

//ファイルの内容を全て文字列で読み込む
$fileName = "foo.txt";
$str = file_get_contents($fileName);
$fp = fopen("baa.txt", "w");//書き込み専用で開く
fwrite( $fp, $str );
fclose( $fp );

19. 12月 2009 von memo-log
カテゴリ: プログラミング |

コメント

コメント投稿

Required fields are marked *