本文介绍了如何在fopen之后进入文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个PHP脚本,后来连续写入文件。

这样写:

ABCD ...

i想要写得这样。

A

B

C

D

.. 。

如何更改我的代码。

谢谢你的答案



i have a php script that wirtes into a file sequentally.
it writes like this:
ABCD...
i want to write like this.
A
B
C
D
...
how i change my Code.
thanks your answer

<?php
header ('Location:');
$handle = fopen("MyFile.txt", "a");
foreach($_GET as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "rn");
}
fwrite($handle, "rn");
fclose($handle);
exit;
?>

推荐答案




这篇关于如何在fopen之后进入文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 00:29