Home > Backend Development > PHP Tutorial > PHP中如何读写数据?

PHP中如何读写数据?

WBOY
Release: 2016-06-23 13:52:36
Original
1201 people have browsed it

我想把以下数据写入TEXT 文本中,如何写?    600881;$m;800;买;0   其中,有常量,也有变量,但是要把他们写在一起,并且覆盖了以前的所有数据, 多谢指教啊。。


回复讨论(解决方案)

最简单的
file_put_contents('d:/test.txt','600881;$m;800;买;0');

最简单的
file_put_contents('d:/test.txt','600881;$m;800;买;0');

    不行呢, 这个变量没有变成数据呢,怎么解决变量的问题 啊?


最简单的
file_put_contents('d:/test.txt','600881;$m;800;买;0');

    不行呢, 这个变量没有变成数据呢,怎么解决变量的问题 啊?
file_put_contents('d:/test.txt',"600881;$m;800;买;0");
改成双引号

可以了,多谢啊

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template