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

php创建文件并写入信息

时间:2015-10-14 15:52:47      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:

$myfile = fopen("c:\\newfile.txt", "w") or die("Unable to open file!");
            $txt = "AAA\n";
            fwrite($myfile, $txt);            
            
            $txt = sizeof($_FILES["picfile"]);
            fwrite($myfile, $txt);            
            
            $txt = "BBB\n";
            fwrite($myfile, $txt);
            fclose($myfile);

php创建文件并写入信息

标签:

原文地址:http://www.cnblogs.com/diony/p/4877307.html

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