首页 > Web开发 > 详细

php报错:Strict Standards: Only variables should be passed by reference in...

时间:2015-10-09 22:38:32      阅读:291      评论:0      收藏:0      [点我收藏+]

我的报错代码

DB::unDB($_result = null , $_db);

改成下面这种写法就不报错了。(和php版本有关系)

$_result = null;
DB::unDB($_result , $_db);

 

php报错:Strict Standards: Only variables should be passed by reference in...

原文:http://www.cnblogs.com/hereim/p/4865216.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!