3 Star 0 Fork 0

chendanming/kmwebvr

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
edit.php 545 Bytes
一键复制 编辑 原始数据 按行查看 历史
chendanming 提交于 2017-12-14 17:28 +08:00 . 初始化基础代码
<?php
//编辑项目(图片、视频)入口文件
define('IN_T',true);
require 'source/include/init.php';
//未登录
if($user['pk_user_main']<=0){
Common::base_header("Location:".$_lang['host']."passport/login?redirectUrl=/member/$module\n");
}
//请求模块
$module = isset($_REQUEST['module']) ? Common::sfilter($_REQUEST['module']) : 'pic';
if(file_exists($module_file= 'module/edit/'.$module.'.php')){
require $module_file;
$tp->assign('module',$module);
$tp->display('edit/edit.tpl');
}
else{
die('hacking attempt');
}
?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/goodman/kmwebvr.git
git@gitee.com:goodman/kmwebvr.git
goodman
kmwebvr
kmwebvr
master

搜索帮助