1

我正在 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 />

有功能吗?谢谢。

4

1 回答 1

0

如果您尝试将 a 转换URI为 URL,那么您做错了。

$uri = 'public://images/my-photo.png';
$url = file_create_url($uri);
// $url should be publicly accessible URL now. 

如果您知道图像相对于 Drupal 根目录的路径,请使用

$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() function doc page中查看其他变量。

于 2013-02-07T19:33:15.747 回答