0

可能重复:
混合数组和对象

print_r用来查看数组包含的内容:

Array ( 
    [2] => stdClass Object ( 
        [id] => 2 
        [category] => 1 
        [sortorder] => 10001 
        [shortname] => 2323 
        [fullname] => asdaSDa 
        [startdate] => 1343188800 
        [visible] => 1 
        [groupmode] => 0 
        [groupmodeforce] => 0 
        [numsections] => 10 
        [role] => student 
        [rolename] => Student 
    ) 
)

我想检索[id]. 如何使用 PHP 实现这一点?

我尝试了以下方法,但从服务器收到异常 500:

echo "<h1>CODIGO: ".$courses[2]["id"]."</h1>";

有什么建议么?

4

1 回答 1

8

您拥有的是一组对象,因此您无法id使用括号访问。相反,您需要使用->直接获取对象属性:

echo $array[2]->id;

如果键更改(但元素是第一个),请使用array_shift()

$first = array_shift( $array);
echo $first->id;

同样,array_pop()如果元素是数组中的最后一个,则使用。

于 2012-08-28T14:14:46.097 回答