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

PHP 写文件的例子

时间:2014-09-03 12:50:26      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   文件   div   sp   log   on   c   

$contents = "All the content"; 
$dir = ‘c:‘; 
$file_path = $dir . "\\content.txt"; 
if(is_writable($file_path)) 
{ 
    file_put_contents($file_path , $contents); 
} 
else 
{ 
    die("Directory $dir is not writable, or does not exist. Please check"); 
}

 

PHP 写文件的例子

标签:style   blog   color   文件   div   sp   log   on   c   

原文地址:http://www.cnblogs.com/dangkei/p/3953290.html

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