`

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

阅读更多

      在测试中,遇到PHP日志中报类似下面的错误信息:

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


      在Google上找到下面的web:

      “Strict Standards: Only variables should be passed by reference” error

      其中,回答者shiplu.mokadd.im对解决方式给出了简洁的解释,其中提到:


The following things can be passed by reference:


- Variables, i.e. foo($a)
- New statements, i.e. foo(new foobar())
- [References returned from functions][2]


      更多的内容,参考http://www.php.net/manual/en/language.references.pass.php

分享到:
评论

相关推荐

    php 出现Strict Standards: Only variables should be passed by reference in的解决方法

    这个问题多半是因为引用传递参数引起的...ECShop出现Strict Standards: Only variables should be passed by reference in的解决方法 今天安装ecshop的时候最上面出现了一个错误提示:Strict Standards: Only variables

    ecmall 兼容php5.5

    问题一:商城首页报错 Strict Standards: Only variables should be passed by reference in D:\wamp\ecshop\includes\cls_template.php on line 422 问题二:后台首页报错 Strict Standards: Non-static method cls...

    phpdocument Strict Standards 错误解决办法

    在你提供的标题和描述中,遇到的错误是“Strict Standards: Only variables should be passed by reference”,这表明你正在尝试将非变量(可能是函数的结果)作为引用传递给函数。 首先,我们来看一下错误发生的...

    2016最新乐程旅游网源码方维内核二次开发版本

    修复 PHP Strict Standards: Only variables should be passed by reference in D:\wwwroot\system\template\template.php 403错误。 后台无法登陆或登陆无响应删除缓存文件即可~ 帐号:admin 密码:admin

    ecshop基于php5.0版本以上的配置修改

    Strict Standards: Only variables should be passed by reference in D:\wamp\ecshop\includes\cls_template.php on line 406 ``` **解决方法**: ```php $tag_arr = explode(' ', $tag); $tag_sel = array_shift...

    php.ini-development

    should be disabled, as enabling it may result in issues when generating XML ; documents, however this remains supported for backward compatibility reasons. ; Note that this directive does not control...

    php函数传值的引用传递注意事项分析

    在PHP 5.3及以上版本,出现"Strict standards: Only variables should be passed by reference"的警告是由于PHP引入了更严格的类型检查。这条警告提示我们,只有变量才能被作为引用传递,而不能是表达式的结果,比如...

    php 获取文件后缀名,并判断是否合法的函数

    需要注意的是,文中提到在使用 PHP 5.3 以上版本时,直接使用 `&` 符号进行变量引用会导致严格标准的错误提示(Strict Standards: Only variables should be passed by reference)。这是因为 PHP 5.3 以上版本对...

Global site tag (gtag.js) - Google Analytics