方法不存在!
- /usr/home/qxu1885200373/htdocs/frphp/fr.php on line 263
258.
$actionName = 'jizhi';
259.
//Error_msg('方法不存在!');
260.
}
261.
}else{
262.
if (!method_exists($controller, $actionName)) {
263.
264.
Error_msg('方法不存在!');
}
265.
}
266.
267.
if($controllerName=='Home' && $actionName=='jizhi'){
268.
if(method_exists($app_home.'\\plugins\\HomeController', 'jizhi')){
- /usr/home/qxu1885200373/htdocs/frphp/fr.php on line 84
79.
spl_autoload_register(array($this, 'loadClass'));
80.
$this->setDbConfig();
81.
$this->setReporting();
82.
$this->removeMagicQuotes();
83.
//$this->unregisterGlobals();
84.
85.
$this->route();
86.
}
87.
88.
// 路由处理
89.
public function route()
- /usr/home/qxu1885200373/htdocs/frphp/fr.php on line 451
446.
447.
// 加载配置文件
448.
$config = require(APP_PATH . 'conf/config.php');
449.
450.
//实例化核心类
451.
(new frphp($config))->run();
- /usr/home/qxu1885200373/htdocs/index.php on line 39
34.
35.
//定义静态文件路径
36.
define('Tpl_style','/static/');
37.
38.
// 加载框架文件
39.
40.
require(APP_PATH . 'frphp/fr.php');
41.
// 就这么简单~
42.