Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Drupal 的新手,有一个小问题。当我使用以下代码上传图像时,图像已成功保存。但一段时间后,图像会自动删除。到目前为止,我一直无法找到问题所在。
我的代码是:
file_prepare_directory($_filePath, FILE_CREATE_DIRECTORY); $file = file_save_upload('thumb_img', '', $_filePath);
谢谢。
该文件将作为临时文件添加到 {file_managed} 表中。临时文件会定期清理。要使文件成为永久文件,请分配状态并使用 file_save() 保存更改。
参考: