我正在 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 />
有功能吗?谢谢。