标签:
php 兼容问题1
$this->_base_classes =& is_loaded();
$this->_base_classes = is_loaded();
引用返回的正确例子
<?php
function &returns_reference()
{
return $someref;
}
$newref =& returns_reference();
?>
php 兼容问题2
return $_config[0] =& $config;
$_config[0] =& $config;
return $_config[0];
CI2这地方写法有问题
Only variables should be assigned by reference
标签:
原文地址:http://www.cnblogs.com/longzhu/p/5828170.html