類定義不存在,請檢查。
- D:\host\hostoer64ggm\web\include\Functions.php on line 161
156.
157.
158.
159.
function syClass($class_name, $args = null, $sdir = null, $force_inst = FALSE){
160.
161.
162.
if(preg_match("/^[a-zA-Z0-9_\-]*$/",$class_name)==0)syError("類定義不存在,請檢查。");
163.
if(TRUE != $force_inst)if(isset($GLOBALS['G_DY']["inst_class"][$class_name]))return $GLOBALS['G_DY']["inst_class"][$class_name];
164.
165.
if(null != $sdir && !import($sdir) && !import($sdir.'/'.$class_name.'.php'))return FALSE;
166.
- D:\host\hostoer64ggm\web\include\Functions.php on line 21
16.
17.
syClass('sysession');
18.
19.
spLaunch("router_prefilter");
20.
21.
22.
$handle_controller = syClass($__controller, null, $GLOBALS['G_DY']["controller_path"].'/'.$__controller.".php");
23.
if(!is_object($handle_controller) || !method_exists($handle_controller, $__action)){
24.
25.
syError('route Error');
26.
- D:\host\hostoer64ggm\web\index.php on line 5
1.
<?php
2.
require("config.php");
3.
$doyoConfig['view']['config']['template_dir'] = APP_PATH.'/template/'.$doyoConfig['ext']['view_themes'];
4.
require(DOYO_PATH."/sys.php");
5.
spRun();