码迷,mamicode.com
首页 > Web开发 > 详细

PHP将字符串写入txt文件

时间:2016-01-15 12:32:44      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:

技术分享
1     function writelog($str)
2     {
3         $open=fopen("e:\log.txt","a" );
4         fwrite($open,$str);
5         fclose($open);
6     }
View Code

1. 使用 fopen($filePath, $type)  来打开文件,

   $filePah--保存文件的路径;$type--打开文件的方式,更多fopen()的信息http://www.w3school.com.cn/php/func_filesystem_fopen.asp

 

2.使用 fwrit();写入文件

 

3.最后使用fclose();关闭文件  

PHP将字符串写入txt文件

标签:

原文地址:http://www.cnblogs.com/tommy-huang/p/5132662.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!