在 Views tpl 中访问文件 URI
我有一个图像字段,我想通过views-view-fields.tpl.php中的PHP直接访问URI
我尝试过:
echo $fields['field_foto']->raw;
但它似乎只显示nid,我想要图片的uri...
I have an image field and I would like to access the URI directly via PHP in views-view-fields.tpl.php
I tried:
echo $fields['field_foto']->raw;
but it seems to show just the nid and I want the uri of the picture...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过使用 var_dump($fields) ?这是了解其中内容的最佳方法。您还可以使用 Devel 模块并使用 dpm()。
Have you tried using var_dump($fields) ? This is the best way to find out what's in it. You may also use the Devel module and use dpm().