码迷,mamicode.com
首页 > 其他好文 > 详细

Only variables should be assigned by reference

时间:2016-09-01 07:04:27      阅读:583      评论:0      收藏:0      [点我收藏+]

标签:

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!