码迷,mamicode.com
首页 > 其他好文 > 详细

file_put_contents 写入文件

时间:2016-04-18 11:46:34      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:

技术分享
    function file_write($file, $string, $type = ‘array‘)  
    {  
        if(is_array($string))  
        {  
            $type = strtolower($type);  
            if($type == ‘array‘)  
            {  
                $string = "<?php\n return ".var_export($string,TRUE).";\n?>";  
            }  
            elseif($type == ‘constant‘)  
            {  
                $data=‘‘;  
                foreach($string as $key => $value) {
                    $data .= "define(‘".strtoupper($key)."‘,‘".addslashes($value)."‘);\n";  
                    $string = "<?php\n".$data."\n?>";  
                }
            }  
        }  
        $filePath = $file;
        $strlen = file_put_contents($filePath, $string, LOCK_EX);
        chmod($filePath, 0777);  
        return $strlen;  
    }  
View Code

 

file_put_contents 写入文件

标签:

原文地址:http://www.cnblogs.com/gengting/p/5403651.html

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