drupal CCK 字段中允许的值列表
我基本上只是想简单地打印出 CCK 字段中的每个允许值。
我知道允许的值存储在表内的文本字段内:“content_node_field”。
然后这些值存储在“global_settings”中,
我希望以某种方式使用 PHP 循环打印出每个单独的允许值。
然而,所有值都存储在一个文本字段中..我发现很难单独打印每个值。
I'm basically looking to simply print out each of the allowed values in a CCK field..
i know the allowed values are stored inside a text field within the table: 'content_node_field'.
the values are then stored within 'global_settings'
I'm looking to somehow print out each individual allowed value using a PHP loop.
however with all values being stored within one text field.. im finding it hard to print out each value individually.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样的事情应该可以解决问题。
Something like this should do the trick.
如果我没有回答你的问题,你可以通过简单地将
[]
后缀添加到字段名称来创建 PHP 数组,例如:现在你可以像这样获取数组的值:
< strong>根据评论更新:
您可以使用 json_decode 函数将数据转换为数组,然后进行相应操作:
示例:
If I am getting your question right, you can create PHP arrays by simply suffixing the
[]
to the names of the fields, so for example:Now you can get the values of the array like this:
Update Based On Comment:
You can use the json_decode function to convert your data to array and then manipulate accordingly:
Example: