如何从节点分类类型字段获取单个值

发布于 2024-12-04 05:58:53 字数 481 浏览 0 评论 0原文

我有这个输出:,我想到达“中心”。

[field_affiliation] => Array(
   [und] => Array(
      [0] => Array(
         [tid] => 30
         [taxonomy_term] => stdClass Object(
            [tid] => 30
            [vid] => 2
            [name] => Center

我可以使用这个方法吗?
$affiliation=$node->field_affiliation['und']['0']['value']['taxonomy_term']['name'];

或如何使用: drupal_array_get_nested_value(); - 我无法理解文档

I have this output:, and I want to get to "Center".

[field_affiliation] => Array(
   [und] => Array(
      [0] => Array(
         [tid] => 30
         [taxonomy_term] => stdClass Object(
            [tid] => 30
            [vid] => 2
            [name] => Center

Can I use this method?
$affiliation=$node->field_affiliation['und']['0']['value']['taxonomy_term']['name'];

or how can I use:
drupal_array_get_nested_value(); - I cannot understand the documentation

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不再让梦枯萎 2024-12-11 05:58:53

试试这个,它会起作用
因为名称位于对象“taxonomy_term”下

$affiliation=$node->field_affiliation['und']['0']['taxonomy_term']->name;

Try this it will work
as the name is under the object 'taxonomy_term'

$affiliation=$node->field_affiliation['und']['0']['taxonomy_term']->name;

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文