Strict Standards: Only variables should be assigned by reference PHP 5.4(严格标准:仅变量应通过引用 PHP 5.4 分配)
问题描述
我将 PHP 版本升级到 5.4(XAMPP 1.7.3 到 1.8.0).现在我看到 Strict Standards 错误,对于 myDBconnection
:
I upgraded my PHP version to 5.4 (XAMPP 1.7.3 to 1.8.0). Now I see Strict Standards error, for myDBconnection
:
严格标准:C:xampphtdocsalousincludedbconn.php 第 4 行中的变量只能通过引用赋值
Strict Standards: Only variables should be assigned by reference in C:xampphtdocsalousincludedbconn.php on line 4
dbconn.php:
<?php
defined('_VALID') or die('Restricted Access!');
$conn = &ADONewConnection($config['db_type']); // <--- This Line 4
if ( !$conn->Connect($config['db_host'],
$config['db_user'],
$config['db_pass'],
$config['db_name'])) {
echo 'Could not connect to MySQL! Please check your database settings!';
die();
}
$conn->execute("SET NAMES 'utf8'");
?>
注意:我不需要使用此方法在 php.ini 中禁用 Strict Standards error_reporting = E_ALL &~E_NOTICE &~E_STRICT
!我想修复我的 PHP 代码.
Note: I don't need to disable Strict Standards in php.ini with this method error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT
! I want to fix my PHP code.
推荐答案
您应该删除 &
(与号)符号,以便第 4 行看起来像这样:
You should remove the &
(ampersand) symbol, so that line 4 will look like this:
$conn = ADONewConnection($config['db_type']);
这是因为 ADONewConnection 已经通过引用返回了一个对象.根据文档,通过引用将引用的结果分配给对象从 PHP 5.3.0 开始,会产生 E_DEPRECATED 消息
This is because ADONewConnection already returns an object by reference. As per documentation, assigning the result of a reference to object by reference results in an E_DEPRECATED message as of PHP 5.3.0
这篇关于严格标准:仅变量应通过引用 PHP 5.4 分配的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:严格标准:仅变量应通过引用 PHP 5.4 分配
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- PHP - if 语句中的倒序 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- PHP foreach() 与数组中的数组? 2022-01-01