<?PHP // 読み込むファイル名の指定 $file_name = "file.txt"; // ファイルを全て変数に入れる $ret_str = file_get_contents( $file_name ); // 取得したファイルデータを表示する echo( "<pre>" ); echo( $ret_str ); echo( "</pre>" ); ?>
■ | file_get_contents | string file_get_contents( string filename [, bool use_include_path [, resource context [, int offset [, int maxlen]]]] ) | ファイルの内容を全て文字列に読み込む |
■ | echo | void echo( string arg1 [, string ...] ) | 1つ以上の文字列を出力する |