-
-
/** - * ファイルを書き込むための php ファイルプログラミング
- * bbs.it-home.org を編集
- */
- //ファイルを書き込みます
- $file_path="text.txt";
- if(!file_exists($file_path)){
- echo "ファイルが存在しません";
- exit();
- }
- //"a+" ファイルの末尾に "w+" を追加して書き換えます
$fp=fopen($file_path ,"w+ ");
- $con="rnHello";
- for($i=0;$i fwrite($fp,$con);}
- < p> ; echo "正常に追加されました";
- fclose($fp);
- ?>
-
コードをコピーします
方法 2、file_put_contents 関数を使用してファイルを書き込みます
-
-
- //ファイルを書き込む 2 番目の方法
- $file_path="text.txt";
- $content="hello,worldrn";
- < ;p> //ファイルに文字列を書き込む場合のデフォルトは [FILE_USE_INCLUDE_PATH] "w+" re-write
- file_put_contents($file_path,$content,FILE_APPEND);
;
- ?>
-
コードをコピー
|