美文网首页
PHP(14)保存数组到本地文件中,并方便后期读取

PHP(14)保存数组到本地文件中,并方便后期读取

作者: 弗兰克万岁 | 来源:发表于2019-10-06 15:27 被阅读0次

    function save_list(goodsid,data){
    path = "bom/goodsid.php";
    str = "<?php\nreturn " . var_export(data, true) . ";\n";

    file_put_contents(path,str);
    }

    function read_local(goodsid){path="bom/goodsid.php"; if(file_exists(path))
    {
    data = includepath;
    return data; } else {res=flash_data(goodsid);#重新从数据库读数据 returnres;
    }
    }

    相关文章

      网友评论

          本文标题:PHP(14)保存数组到本地文件中,并方便后期读取

          本文链接:https://www.haomeiwen.com/subject/nzmupctx.html