<?PHP // 作成するファイル名の指定 $file_name = "file.txt"; // ファイルポインタを開く $fp = fopen( $file_name, 'w' ); // データを1行書き込む(出力) fputs( $fp, "abcdefg" ) ); // 開いたファイルポインタを閉じる fclose( $fp ); ?>
■ | fopen | resource fopen( string filename, string mode [, int use_include_path [, resource zcontext]] ) | ファイルまたはURLをオープンする |
■ | fputs | string fputs( resource handle, string string [, int length] ) | バイナリ・モードによるファイル書き込み 【fwrite() のエイリアス(※)】 |
■ | fclose | bool fclose( resource handle ) | オープンされたファイルポインタをクローズする |