发布网友 发布时间:2022-04-26 02:46
共5个回答
热心网友 时间:2022-04-06 03:46
使用fopen,fwrite,fclose 方法
简单的例子如下<?php
$afile = fopen("afile.php", "w") or die("Unable to open file!");
$txt = "Hi,\n";
fwrite($myfile, $txt);
$txt = "success\n";
fwrite($afile, $txt);
fclose($afile);
?>
关键是写文件的地方,必须要有写的权限。尤其是linux服务器。 可用 chmod 方法 来更改权限。
热心网友 时间:2022-04-06 05:04
$data = <<<EOT
热心网友 时间:2022-04-06 06:39
$content="内容";//要写入B的内容热心网友 时间:2022-04-06 08:30
PHP写PHP好像还不可以吧。热心网友 时间:2022-04-06 10:38
网上好多啊