gpt4 book ai didi

PHP读取对象属性

转载 作者:可可西里 更新时间:2023-11-01 01:13:32 24 4
gpt4 key购买 nike

我有一个像这样的对象名称obj:

stdClass Object
(
[@attributes] => stdClass Object
(
[CurrencyCode] => AUD
[CurrencyName] => AUST.DOLLAR
[Buy] => 17825.4
[Transfer] => 17933
[Sell] => 18092.95
)
)

我使用了一些方法:

  • obj[货币代码]

  • obj ->CurrencyCode

但不工作并得到错误:Use of undefined constant CurrencyCode如果使用:obj -> @attributes 得到错误:syntax error, unexpected ''@attributes'' (T_CONSTANT_ENCAPSED_STRING)

最佳答案

您需要将 @attributes 包装在 {} 中检查示例

<?php
$abc = array('@attributes' => array('CURR' => 1));
$abc = json_decode(json_encode($abc));
echo '<pre>';
print_r($abc->{"@attributes"}->CURR);
?>

关于PHP读取对象属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46417992/

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