尝试从数组中获取值,drupal

发布于 2024-12-14 08:07:05 字数 297 浏览 1 评论 0 原文

在此处输入图像描述

我试图从下面的数组中获取值,我尝试了这两种方法

print $node->field_equiryform_custmessage[0][0];

print $node->field_equiryform_custmessage[0]['value'];

我做错了什么?

谢谢

enter image description here

I am trying to get the value from the array below tried both

print $node->field_equiryform_custmessage[0][0];

and

print $node->field_equiryform_custmessage[0]['value'];

What am I doing wrong?

Thanks

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

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

发布评论

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

评论(1

蹲在坟头点根烟 2024-12-21 08:07:05

在 Drupal 7 中,字段数组现在用语言元素包装(上面输出中的 und 表示未定义,就像在未定义的语言中一样)。

您可以使用 und 作为数组键或(最好)使用 LANGUAGE_NONE 常量来访问字段的值:

print $node->field_equiryform_custmessage[LANGUAGE_NONE][0]['value'];

如果您运行的是多语言系统,它看起来会更方便像这样:

print $node->field_equiryform_custmessage[$node->language][0]['value'];

后者实际上可能是更适合未来的方法。

In Drupal 7 field arrays are now wrapped with a language element (the und in your output above means undefined, as in undefined language).

You can access your field's value either using und as an array key or (preferably) use the LANGUAGE_NONE constant:

print $node->field_equiryform_custmessage[LANGUAGE_NONE][0]['value'];

If you're running a multi-lingual system it would look more like this:

print $node->field_equiryform_custmessage[$node->language][0]['value'];

The latter might actually be the more future-proof way of doing this either way.

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