gpt4 book ai didi

PHP 通知 : Use of undefined constant type

转载 作者:可可西里 更新时间:2023-10-31 22:47:21 24 4
gpt4 key购买 nike

我做错了什么,我不知道该怎么办(如何解决)

代码:

var_dump($each->promotion-type);

返回:

PHP Notice:  Use of undefined constant type - assumed 'type' in newfile.php on line 19

我无法更改该变量名称,因为我是从我的供应商那里得到的,我有什么想法可以访问该促销类型变量吗? (语法方面)

最佳答案

因为表达式被解释为变量 $each->promotion 减去常量 type,所以该通知随地吐痰。

要访问名称中带有破折号的属性,请使用大括号和引号:

var_dump($each->{'promotion-type'});

关于PHP 通知 : Use of undefined constant type,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7815551/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com