收藏
回答

小程序连PHP时抛出错误,必须降PHP版本吗?

php版本是7.2,出现了如下错误

Use of undefined constant XXXXXXX - assumed 'XXXXX' (this will throw an Error in a future version of PHP) 

网上查了些,可能要将PHP版本降成5.6,或者装多个版本PHP切换也可以,


Warning: Use of undefined constant datelist - assumed 'datelist' (this will throw an Error in a future version of PHP) in C:\xampp\htdocs\stbc\apply.php on line 6

 PHP第六行很简单 就是:$datelist=$_POST[datelist];

回答关注问题邀请回答
收藏

2 个回答

  • VBit
    VBit
    2022-03-05

    检查下代码

    2022-03-05
    有用 1
    回复
  • we
    we
    2022-03-05

    $_POST[datelist] 改成 $_POST['datelist'] 试下

    2022-03-05
    有用 1
    回复 2
    • 宋佳耀
      宋佳耀
      2022-03-05
      你说得对。
      2022-03-05
      回复
    • 翔宇
      翔宇
      2022-03-05
      原来如此。感谢
      2022-03-05
      回复
登录 后发表内容