从没有循环的数组中获取信息

时间:2017-05-13 10:42:57

标签: php arrays loops foreach

我希望从这个数组中获取term_id值,而不需要任何循环或foreach。 我需要它:

第一期ID是: 第二期ID是:

我尝试使用echo $ term [0] - > term_id;但它无法正常工作

这是我的var_dump结果:

array(2) {
  [0]=>
  object(WP_Term)#4046 (10) {
    ["term_id"]=>
    int(72)
    ["name"]=>
    string(14) "samsung"
    ["slug"]=>
    string(91) "samsung"
    ["term_group"]=>
    int(0)
    ["term_taxonomy_id"]=>
    int(72)
    ["taxonomy"]=>
    string(11) "product_cat"
    ["description"]=>
    string(0) ""
    ["parent"]=>
    int(63)
    ["count"]=>
    int(5)
    ["filter"]=>
    string(3) "raw"
  }
  [1]=>
  object(WP_Term)#4045 (10) {
    ["term_id"]=>
    int(64)
    ["name"]=>
    string(15) "onclikck"
    ["slug"]=>
    string(8) "onclikck"
    ["term_group"]=>
    int(0)
    ["term_taxonomy_id"]=>
    int(64)
    ["taxonomy"]=>
    string(11) "product_cat"
    ["description"]=>
    string(92) "Description"
    ["parent"]=>
    int(63)
    ["count"]=>
    int(3)
    ["filter"]=>
    string(3) "raw"
  }
}

1 个答案:

答案 0 :(得分:0)

试试这样:

$term[0]['term_id']