首页 > 其他 > 网站日记>正文

[php代码]用php文件保存json数据

提示: 阅读权限:登录可见  
 $_POST['storageType'] = "file";
    $_POST['scope'] = implode(",",$_POST['scope']);
    $_POST['errorReport'] =false;
    $setting = "<?php die('forbidden'); ?>n";
    $setting .= json_encode($_POST);
    $setting = str_replace("/", "/",$setting);
    $incFile = fopen("../API/comm/inc.php","w+") or die("请设置APIcomminc.php的权限为777");
    if(fwrite($incFile, $setting)){
        echo "<meta charset='utf-8' />";
        echo "配置成功,<a href='../example/'>查看example</a><br /><span style='color:red'>如果已配置成功并发布到外网,请只保留API目录下文件,删除intall目录下和其他文件</span>";

        fclose($incFile);
    }

 

思路就是:先把数组数据转换为json字符串,增加顶部代码die使得数据不被泄露。使用的时候这样取出来:

 

此处隐藏390个字。

登录可见

 

上一篇:[帝国代码]后台建立数据表

下一篇:【帝国cms】如何获取网站使用的帝国cms版本号?

tags: php 编程语言

返回首页

相关

热门

站内直通车

[!--temp.bottomnav--]
返回顶部