【发布时间】:2017-11-13 09:49:09
【问题描述】:
当我将服务器升级到 php7 codeigniter 时,特别是 datamapper ORM 给了我这个错误...
消息:以非静态方式访问静态属性 DataMapper::$config
文件名:libraries/datamapper.php 行号:6474
有问题的功能是...
protected function _dmz_assign_libraries()
{
static $CI;
if ($CI || $CI =& get_instance())
{
// make sure these exists to not trip __get()
$this->load = NULL;
$this->config = NULL;
$this->lang = NULL;
// access to the loader
$this->load =& $CI->load;
// to the config
$this->config =& $CI->config;
// and the language class
$this->lang =& $CI->lang;
}
}
【问题讨论】:
标签: codeigniter orm datamapper