码迷,mamicode.com
首页 > 编程语言 > 详细

php将数组或字符串写入文件

时间:2014-10-16 13:15:12      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:php   数组   array   文件   

//将数组保存在文件中
function export_to_file($file, $variable) {
    $fopen = fopen($file, 'wb');
    if (!$fopen) {
        return false;
    }
    fwrite($fopen, "<?php\nreturn ".var_export($variable, true).";\n?>");
    fclose($fopen);
    return true;
}
//将字符串写入文件
function put_to_file($file, $content) {
    $fopen = fopen($file, 'wb');
    if (!$fopen) {
        return false;
    }
    fwrite($fopen, $content);
    fclose($fopen);
    return true;
}

php将数组或字符串写入文件

标签:php   数组   array   文件   

原文地址:http://blog.csdn.net/hearain528/article/details/40144427

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