Use of undefined constant ture

  今天在安装一个wordpress模板时提示Use of undefined constant ture - assumed 'ture' (this will throw an Error in a future version of PHP),看提示是需要把true用''包起来,ytkah就试着把

array(
'default' => ture,
),

  改成

array(
'default' => 'ture',
),

  问题解决

  安装模板的时候有提示php需要7.4版本,但实际使用是7.3,这个应该是php不同版本的使用方法不用引起的,有遇到相似问题的朋友可以试试

请已赞赏了的朋友加我微信
原文地址:https://www.cnblogs.com/ytkah/p/14825263.html