首页课程Cours amusant PHPOpération d'écriture de fichier PHP

Opération d'écriture de fichier PHP

目录列表

下面哪些模式下可以读/写文件?

写完文件后需要关闭写入,需要使用哪个函数?

重新排序使下面代码能写入“hello PHP中文网”

  • fclose($file);
  • $file = fopen("test.txt" ,"w");
  • fwrite($file,"PHP中文网");
  • fwrite($file,"hello");
1/3