美文网首页
将json格式字符串存到指定的php文件中

将json格式字符串存到指定的php文件中

作者: peterz博客 | 来源:发表于2018-08-21 14:32 被阅读62次

function set_php_file($filename, $content){
     $fp = fopen($filename, "w");
     fwrite($fp, $content);
     fclose($fp);
}

function get_php_file($filename){
    return trim(substr(file_get_contents($filename), 15));
}

调用

$filename = "json/navs.json";
$content = json_encode($data);

set_php_file($filename,$content);
json_decode(get_php_file($filename));

相关文章

网友评论

      本文标题:将json格式字符串存到指定的php文件中

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