0
Array (
    [und] => Array (
        [0] => Array (
            [tid] => 37
            [taxonomy_term] => stdClass Object (
                [tid] => 37
                [vid] => 9
                [name] => $10 - $20
                **[description] => $10 - $20**
                [format] => filtered_html
                [weight] => 1
                [vocabulary_machine_name] => prices
            )
        )
    )
)

一直在尝试这样的事情:

print $node->field_price['und']['0']['tid']->taxonomy_term;

它就像一个嵌套数组,里面也有一个对象。我不太确定如何获取似乎在其中的对象内的 [description] 属性。

有什么帮助吗?请!

4

2 回答 2

1

尝试:

echo $node->field_price['und'][0]['taxonomy_term']->description;
于 2013-07-11T04:28:50.080 回答
0

尝试这个:

print $node->field_price[LANGUAGE_NONE]['0']['taxonomy_term']->description;

LANGUAGE_NONE 是具有未定义语言的“键”名称并在 Drupal 中使用的常量。

于 2013-08-07T22:50:51.937 回答