0

一時ディレクトリに作成したファイルを drupal に保存したい。しかし、file_save はファイル オブジェクトを要求しますが、実際のパスしかありません。

$imageId =file_save('/tmp/proj/media/cover.jpg']);
4

2 に答える 2

1

file_save() の代わりにfile_save_data function、またはおそらくfile_unmanaged_save_dataを探していると思います。

于 2012-10-15T14:07:13.983 に答える
0

file_save(stdClass $file) ファイル オブジェクトを保存します。ファイルをダウンロードしようとしています。

あなたは次のようにすることができます

$file = '/tmp/proj/media/cover.jpg';
// Get the file size
$details = stat($file);
$filesize = $details['size'];

// Get the path to your Drupal site's files directory 
$dest = file_directory_path();

// Copy the file to the Drupal files directory 
if(!file_copy($file, $dest)) {
    echo "Failed to move file: $file.\n";
    return;
} else {
    // file_move might change the name of the file
    $name = basename($file);
}

// Build the file object
$file_obj = new stdClass();
$file_obj->filename = $name;
$file_obj->filepath = $file;
$file_obj->filemime =  file_get_mimetype($name);
$file_obj->filesize = $filesize;
$file_obj->filesource = $name;
// You can change this to the UID you want
$file_obj->uid = 1;
$file_obj->status = FILE_STATUS_TEMPORARY;
$file_obj->timestamp = time();
$file_obj->list = 1;
$file_obj->new = true;

// Save file to files table
drupal_write_record('files', $file_obj);

これがお役に立てば幸いです。

于 2012-10-18T06:16:42.387 に答える