我正在Drupal 7中创建一个模块。如果我想将UNIX时间戳格式化为日期,我可以使用format_date函数,如下所示:
$date = format_date($node->created, 'custom', 'j F Y');
是否还有一个我可以参考格式化图像的功能?假设我的数据库查询返回
picture-4-136576449.png
从表中我想将其转换为:
<img src="/images/picture-4-136576449.png />
有功能吗?感谢。
答案 0 :(得分:0)
如果您尝试将URI
转换为网址,则表明您做错了。
$uri = 'public://images/my-photo.png';
$url = file_create_url($uri);
// $url should be publicly accessible URL now.
如果您知道相对于Drupal root的图像路径,请使用
$url = url('path/to/image.png', array('alias' => FALSE));
您可以使用theme('image', $variables)
对图像进行主题设置。
前:
<?php
print theme('image', array('path' => 'path/to/image.png',
'title' => t('Some title'), //optional
'alt' => t('Some alt text'), //optional
));
您可以在theme_image()函数doc page中看到其他变量。