获取值stdClass对象PHP

时间:2015-06-07 08:15:11

标签: php arrays object stdclass

stdClass来源http://zerrax.fr/b/example.php

$response->torrents[0]->[28]; ??
$response->torrents[0]->[0]; ??

1 个答案:

答案 0 :(得分:1)

使用{}访问对象键 - 允许您将不正确的字符封装在对象键中。

$response->torrents->{0}->{0};

在你的情况下,你有种子数组,然后在数组内。 所以你必须从下一个方面访问它:

$response->torrents[0][0];