unexpected T_FUNCTION with php 5.2.17 but fine on localhost and php 5.3.10

前端 未结 3 1540
无人及你
无人及你 2021-01-20 06:49

I\"m getting an unexpected T_FUNCTION php error after uploading my Wordpress files to a server running php version 5.2.17.

The theme works fine on localhost (with MA

3条回答
  •  春和景丽
    2021-01-20 07:22

    You cannot have anonymous functions in PHP less than 5.3

    Rework your code so that it does not involve anonymous functions and it should work on your older server.

提交回复
热议问题