摘要:
PHP7.4运行项目报错:Deprecated Functionality: implode(): Passing glue string after array is deprecated。只需交换 implode() 函数的两个参数!
PHP7.4运行项目报错:Deprecated Functionality: implode(): Passing glue string after array is deprecated.(不推荐使用的功能:implode())
原因:PHP7.4版本更新了implode()函数的使用方式,下面是官方的介绍:
解决方案:
把implode()函数的两个参数调换一下位置即可!
//原来版本 implode($parts, $glue) //php7.4版本 implode($glue, $parts)
本文来源:【PHP7.4 报错:Deprecated Functionality: implode(): Passing glue string after array is deprecated.】
由思享SEO博客编辑转载,仅用于参考学习,如有侵权请联系本站修改删除!