opencart php 7.4 以下升到7.4以上 opencart 图片管理器问题 2022年10月20日 0 主题 by iclouds 问题截图如下图 问题原因: PHP7.4不再支持使用大括号访问数组以及字符串的偏移 php7.4不再支持数组{}写法,统一为数组[] 解决方案: /system/library/filemanager/elFinder.class.php if ($url{0} != ‘/’) { 修改为 if ($url[0] != ‘/’) {
Comments