Drupal 6 从文件存储中获取文件对象
我有一个文件存储在 drupal 文件表中。我需要获取一个 $file 对象来保存为 CCK 字段。如何从数据库中的文件表中获取 $file 对象?
I have a file stored in the drupal file table. I need to get a $file object to save as a CCK field. How can I get $file object out of the file table in the DB?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您知道文件的 ID,则只需使用查询即可。
您当然可以更改查询以匹配您的已知信息。
根据您的结果,您可能还需要使用
db_fetch_array
或db_fetch_object
。然后,您可以使用
$file = field_file_save_file($path, $validators, $drupal_destination)
在 CCK 文件字段。现在您可以使用 $file 数组存储为 CCK 字段。
If you know the ID of the file, you could just use a query
You can of course alter the query to match your known information.
Depending on your result, you may also want to use
db_fetch_array
ordb_fetch_object
.Then you can use
$file = field_file_save_file($path, $validators, $drupal_destination)
to save if with the help of CCK FileField.Now you can use $file array to store as CCK Field.
也许不是最好的选择,但我使用 field_file_load()< /a>.您可能必须将返回的文件转换为对象:
Maybe not the best option, but I use field_file_load(). You might have to cast returned file to objects: