侧边栏壁纸
博主昵称
流苏小筑

步伐虽小,密而不止

PHP自定义函数(11)--- php 将数组保存成文件存在本地

2019年05月13日 78阅读 0评论 0点赞
// 文件测试
    $array = array(
        '001'   =>  '123',
        '002'   =>  '321',
        '003'   =>  '4321',
        
        );
    $path = './Cache/videoCate.php';
    if (!file_exists($path)){
        mkdir(dirname($path),0777,TRUE);
    }
    
    file_put_contents($path, "<?php return \r\n ".var_export($array,TRUE)."; \r\n?>");
    $arr = require $path;
    var_dump($arr);
0

—— 评论区 ——

昵称
邮箱
网址
取消