欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

DRUPAL 根据 fid 得到文件 file 对象 (其实是数组,不是对象) object 有大用

DRUPAL – GET IMAGE/FILE PATH BY FILE ID(FID) 

1)第一种方法 根据数据库查询 
db_query("select filepath from files where fid=%d",$element['#value']->fid)

DRUPAL – GET IMAGE/FILE PATH BY FILE ID(FID)

You can get the image/file path by fid using the field_flie_load() function.

1
2
3
4
5
6
7
8
<?php
  // Load the node with nid = 10
  $display_node = node_load(10);
  // Load the file by fid
2)第一种方法 根据field_file_load函数得到 
  $file = field_file_load($display_node->field_file[0]['fid']);
  // print the relative file path
  print $file['filepath'];
?>

 

Done =)

Reference: Drupal – Getting the image path of a CCK field

来自  https://eureka.ykyuen.info/2011/06/18/drupal-get-imagefile-path-by-file-idfid/
普通分类: