Drupal 6 从文件存储中获取文件对象

发布于 2024-10-19 20:36:34 字数 81 浏览 5 评论 0原文

我有一个文件存储在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

爱殇璃 2024-10-26 20:36:34

如果您知道文件的 ID,则只需使用查询即可。

$results = db_result(db_query("SELECT * FROM {files} WHERE fid = %d", 3));

您当然可以更改查询以匹配您的已知信息。

根据您的结果,您可能还需要使用 db_fetch_arraydb_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

$results = db_result(db_query("SELECT * FROM {files} WHERE fid = %d", 3));

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 or db_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.

始终不够爱げ你 2024-10-26 20:36:34
<?php
$fileObject = db_fetch_object(db_query("SELECT * FROM {files} WHERE fid = %d", $fid));
<?php
$fileObject = db_fetch_object(db_query("SELECT * FROM {files} WHERE fid = %d", $fid));
柠檬色的秋千 2024-10-26 20:36:34

也许不是最好的选择,但我使用 field_file_load()< /a>.您可能必须将返回的文件转换为对象:

 $file = (object)field_file_load($fid);

Maybe not the best option, but I use field_file_load(). You might have to cast returned file to objects:

 $file = (object)field_file_load($fid);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文