phpEnv运行php项目报错:

A PHP Error was encountered
Severity: Notice
Message: Only variable references should be returned by reference
Filename: core/Common.php
Line Number: 256
解决方法
进入system/core,修改Comm.php 256行
修改前
return $_config[0] =& $config;
- 1
修改后
$_config[0] =& $config; return $_config[0];
- 1

![[手游] 三网H5小游戏【少年仙路】WIN系服务端+Linux手工服务端+详细搭建教程](https://cdn.jxasp.com:9143/image/20260615/136BC33AA47EB0D84E878835A8B38FDB.png)

















