0 Star 0 Fork 0

taodongzhou@126.com/Messageboards

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.php 728 Bytes
一键复制 编辑 原始数据 按行查看 历史
taodongzhou@126.com 提交于 2015-03-31 14:53 . first
<?php
require_once ('./config/conn.php');
require_once ('./eccore/funcs.php');
require_once ('./model/model.base.php');
include './libs/Smarty.class.php';
require_once ('./controller/app.base.php');
define(SUFFIX, "Controller");
$c_str = isset($_GET["c"]) ? $_GET["c"] : "demo";
//获取要运行的controller
$method = isset($_GET["a"]) ? $_GET["a"] : "index";
//获取要运行的action
$c_name = $c_str . SUFFIX;
//按照约定url中获取的controller名字不包含Controller,此处补齐。
$c_path = 'controller/' . $c_name . '.php';
require ($c_path);
//加载controller文件
$controller = new $c_name;
//实例化controller文件
$controller -> $method();
//运行该实例下的action
/* End of file index.php */
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/riceast/Messageboards.git
git@gitee.com:riceast/Messageboards.git
riceast
Messageboards
Messageboards
master

搜索帮助