NOTICE: Trying to access array offset on value of type bool in /www/wwwroot/cacsa.kunbocs.cn/protected/controller/front/MeetingController.php on line 34
- /www/wwwroot/cacsa.kunbocs.cn/protected/lib/speed.php on line 511
506.
$msg = "ERROR";
507.
if($errno == E_WARNING)$msg = "WARNING";
508.
if($errno == E_NOTICE)$msg = "NOTICE";
509.
if($errno == E_STRICT)$msg = "STRICT";
510.
if($errno == 8192)$msg = "DEPRECATED";
511.
512.
err("$msg: $errstr in $errfile on line $errline");
}
513.
function err($msg){
514.
$msg = htmlspecialchars($msg);
515.
$traces = debug_backtrace();
516.
if(!empty($GLOBALS['err_handler'])){
- /www/wwwroot/cacsa.kunbocs.cn/protected/controller/front/MeetingController.php on line 34
29.
$typeId = arg("typeid");
30.
$this->title = array("value" => $typeId, "text" => MeetingType::GetText($typeId));
31.
$model = new Meeting();
32.
$result= $model->getById($id);
33.
$this->result =$result;
34.
35.
if($result["company_id"])
{
36.
$id_array=explode(',',$result["company_id"]);
37.
$company_array=[];
38.
$company=new Company();
39.
foreach($id_array as $list=>$item)
- /www/wwwroot/cacsa.kunbocs.cn/protected/lib/speed.php on line 89
84.
$GLOBALS['controller_name'] = $controller_name;
85.
$GLOBALS['action_name'] = $action_name;
86.
$GLOBALS['module'] = $__module;
87.
88.
$controller_obj = new $controller_name();
89.
90.
$controller_obj->$action_name();
91.
if($controller_obj->_auto_display){
92.
$auto_tpl_name = (empty($__module) ? '' : $__module.DS).$__controller.'_'.$__action.'.html';
93.
if(file_exists(APP_DIR.DS.'protected'.DS.'view'.DS.$auto_tpl_name))$controller_obj->display($auto_tpl_name);
94.
}
- /www/wwwroot/cacsa.kunbocs.cn/index.php on line 6
1.
<?php
2.
session_start();
3.
define('APP_DIR', realpath('./'));
4.
//载入自动composer加载器
5.
require(APP_DIR.'/protected/lib/vendor/autoload.php');
6.
require(APP_DIR.'/protected/lib/speed.php');