1 Star 0 Fork 6

jzxyouok / pigcms

forked from sunbingzibo / pigcms 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
index.php 708 Bytes
一键复制 编辑 原始数据 按行查看 历史
sunbingzibo 提交于 2014-11-05 14:37 . 加入首页的文件
<?php
header("Content-type: text/html; charset=utf-8");
if (get_magic_quotes_gpc())
{
function stripslashes_deep($value)
{
$value = is_array($value) ? array_map('stripslashes_deep', $value) : stripslashes($value);
return $value;
}
$_POST = array_map('stripslashes_deep', $_POST);
$_GET = array_map('stripslashes_deep', $_GET);
$_COOKIE = array_map('stripslashes_deep', $_COOKIE);
}
define('APP_DEBUG', true);
define('APP_NAME', 'cms');
define('CONF_PATH', './Data/Conf/');
define('RUNTIME_PATH', './logs/');
define('TMPL_PATH', './tpl/');
define('HTML_PATH', './Data/html/');
define('APP_PATH', './Cms/');
define('CORE', './bin');
require(CORE . '/thinkphp.php');
?>
1
https://gitee.com/jzxyouok/pigcms.git
git@gitee.com:jzxyouok/pigcms.git
jzxyouok
pigcms
pigcms
master

搜索帮助