浏览文章

文章信息

Magento2.3.2 使用PHP7.3.x环境 17451

从PHP 7.3开始,如果在没有数字参数的switch中使用continue,则会抛出警告。参考:php / php-src @ 04e3523

因此,更改核心文件可以解决问题。

更改continue为continue 2vendor / zendframework / zend-stdlib / src / ArrayObject.php @line426。

更改continue为continue 2vendor / magento / zendframework1 / library / Zend / Pdf / FileParser / Font / OpenType.php @ line 901。

更改continue为continue 2vendor / magento / zendframework1 / library / Zend / Pdf / FileParser / Font / OpenType.php @ line 920。

更改continue为continue 2vendor / magento / zendframework1 / library / Zend / Pdf / FileParser / Font / OpenType.php @ line 932。


现在尝试做bin/magento setup:upgrade它会工作.. !!


原创