使用 Views_get_view_result 返回图像字段内容,但如何获取路径?

发布于 2024-10-26 17:57:35 字数 195 浏览 0 评论 0原文

如何使用 php 从节点获取图像?我使用views_get_view_result从视图中检索数组,对于图像字段,我得到一个序列化字符串:

a:2:{s:3:"alt";s:20:"南太平洋海报";s:5:" title";s:0:"";}

它不包含有关图像所在位置或图像名称的引用。在视图中,图像在预览区域中正确显示。

谢谢

how do I grab images from a node using php? I"m using views_get_view_result to retrieve the array from Views and for the image field I get a serialized string:

a:2:{s:3:"alt";s:20:"south pacific poster";s:5:"title";s:0:"";}

it contains no reference as to where the image is located or the name of the image. In Views the image displays properly in the preview area.

Thanks

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

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

发布评论

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

评论(2

狼性发作 2024-11-02 17:57:35

啊!视图有一个用于 URL 到文件的选项

ah! Views has an option for URL to File

小忆控 2024-11-02 17:57:35

很难确切地说出你在做什么,但你可以从 fid 中获取文件路径,如下所示:

<?php 
$r = db_result(db_query('select filepath from files where fid=%d',$fid));

Its hard to tell exactly what you are doing, but you can get the filepath from the fid with something like:

<?php 
$r = db_result(db_query('select filepath from files where fid=%d',$fid));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文