Home >Backend Development >PHP Tutorial >Compatibility issues between CodeIgniter and PHP5.6, codeigniterphp5.6_PHP tutorial

Compatibility issues between CodeIgniter and PHP5.6, codeigniterphp5.6_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 09:46:29837browse

Compatibility issues between CodeIgniter and PHP5.6, codeigniterphp5.6

Error message:

A PHP Error was encountered

Severity: Notice

Message: Only variable references should be returned by reference

Filename: core/Common.php

Line Number: 257

Original code:

return $_config[0] =& $config;

After modification:

$_config[0] =& $config;

return $_config[0];

The above is the entire content of this article, I hope you all like it.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1033495.htmlTechArticleCompatibility issues between CodeIgniter and PHP5.6, codeigniterphp5.6 error message: A PHP Error was encounteredSeverity: NoticeMessage: Only variable references should be returned by reference...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn