sysession類定義不存在,請(qǐng)檢查。
- /var/www/include/Functions.php on line 101
96.
$argString = '';$comma = '';
97.
if(null != $args)for ($i = 0; $i < count($args); $i ++) { $argString .= $comma . "\$args[$i]"; $comma = ', ';}
98.
eval("\$GLOBALS['G_DY']['inst_class'][\$class_name]= new \$class_name($argString);");
99.
return $GLOBALS['G_DY']["inst_class"][$class_name];
100.
}
101.
102.
syError($class_name."類定義不存在,請(qǐng)檢查。");
}
103.
function curl_get($url) {
104.
$ch = curl_init();
105.
curl_setopt($ch, CURLOPT_TIMEOUT, 120);
106.
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
- /var/www/include/Functions.php on line 9
4.
GLOBAL $__controller, $__action;
5.
if($__controller=='syaccount'){
6.
syError('route Error');
7.
exit;
8.
}
9.
10.
syClass('sysession');
spLaunch("router_prefilter");
11.
$handle_controller = syClass($__controller, null, $GLOBALS['G_DY']["controller_path"].'/'.$__controller.".php");
12.
if(!is_object($handle_controller) || !method_exists($handle_controller, $__action)){
13.
syError('route Error');
14.
exit;
- /var/www/index.php on line 98
93.
$doyoConfig['ext']['view_themes'] = $_GET['theme'];
94.
setcookie('theme', $doyoConfig['ext']['view_themes']);
95.
}
96.
$doyoConfig['view']['config']['template_dir'] = APP_PATH . '/template/' . $doyoConfig['ext']['view_themes'];
97.
require DOYO_PATH . "/sys.php";
98.
spRun();