0

我在 drupal 7 中创建了一个自定义图像字段,现在想要输出它(它的 url 和文件名(完整文件名))。

我试过这个:-

echo $node->field_featured_image['und'][0]['filename']

但它不起作用:(

请问你能帮帮我吗?谢谢。

4

1 回答 1

0

我试过这个;似乎工作

 $image = field_get_items('node', $node, 'field_featured_image');
            echo file_create_url($image[0]['uri']);

但是当没有图像时它也会显示一个 URL。认为它应该是空的。

于 2013-08-09T15:21:32.357 回答