php结果写入txt文件,高分求高手
有如下php<?phpecho"11111111";echo"</br>";echo"22222222";echo"</br>";echo"33333333";echo"...
有如下php
<?php
echo "11111111";
echo "</br>";
echo "22222222";
echo "</br>";
echo "33333333";
echo "</br>";
?>
执行结果为:
11111111
22222222
33333333
想要这个结果写入到指定文件名的txt,如何写?注:随之数据增加,每次要覆盖同名txt并写入 展开
<?php
echo "11111111";
echo "</br>";
echo "22222222";
echo "</br>";
echo "33333333";
echo "</br>";
?>
执行结果为:
11111111
22222222
33333333
想要这个结果写入到指定文件名的txt,如何写?注:随之数据增加,每次要覆盖同名txt并写入 展开
2个回答
展开全部
$myfile = fopen("filename.txt", "w") or die("Unable to open file!");
$txt = "11111111\n";
fwrite($myfile, $txt);
$txt = "22222222\n";
fwrite($myfile, $txt);
$txt = "33333333\n";
fwrite($myfile, $txt);
fclose($myfile);
追问
php是这个样
";
echo "$b";
echo "";
echo "$c";
echo "";
?>
a b c 都是变量,怎么把php的执行结果原样写入txt文件,也就是一行一个
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询