Php создает zip-файл (из вложений к сообщениям wordpress)

Я пытаюсь создать zip-файл из вложений сообщений в wordpress.

Я пробовал оба приведенных ниже метода - но это ничего не дало (нет сообщений об ошибках, файл не создан) - Что я делаю неправильно (опять же..)

Я не думаю, что тот факт, что это вложения в сообщения в wordpress не имеет к этому никакого отношения - потому что эти методы не помогли и с обычными файлами. почему?--> См. ответ.

$files_to_zip = array();// create files array
    //run a query
    $post_id = get_the_id();
    $args = array(
        'post_type' => 'attachment',
        'numberposts' => null,
        'post_status' => null,
        'post_parent' => $post_id
    );

    $attachments = get_posts($args);
    if ($attachments) {
foreach ($attachments as $attachment) {
        $files_to_zip [] = wp_get_attachment_url( $attachment->ID ); // populate files array
        }
    }
    print_r($files_to_zip);
    $zip = new ZipArchive;
    $zip->open('file.zip', ZipArchive::CREATE);
    foreach ($files_to_zip as $file) {
      $zip->addFile($file);
    }
    $zip->close();

а также этот метод:

$files_to_zip = array(); // create array
//run a query
$post_id = get_the_id();
$args = array(
    'post_type' => 'attachment',
    'numberposts' => null,
    'post_status' => null,
    'post_parent' => $post_id
);
$zip = new ZipArchive;
$zip->open('file.zip', ZipArchive::CREATE);
$attachments = get_posts($args);
if ($attachments) {
    foreach ($attachments as $attachment) {
     $zip->addFile(wp_get_attachment_url( $attachment->ID ));
    }
}

print_r($files_to_zip);// debug - return file names OK

$zip->close();

Оба метода ничего не вернули.. Любые идеи будут оценены.

РЕДАКТИРОВАТЬ I- образец print_r для массива $files_to_zip

print_r($files_to_zip);

Array ( 
[0] => http://localhost/testing_evn/wp-content/uploads/2012/03/wrt-62316IMAG0659.jpg 
[2] => http://localhost/testing_evn/wp-content/uploads/2012/03/wrt-85520_IGP0255.jpg
[3] => http://localhost/testing_evn/wp-content/uploads/2012/03/wrt-85520_IZTP0635.jpg
[4] => http://localhost/testing_evn/wp-content/uploads/2012/03/wrt-85520_ITG035t5.jpg
[5] => http://localhost/testing_evn/wp-content/uploads/2012/03/wrt-85520_IRTT7375.jpg )

..используя get_attached_file(), он создаст реальныйпуть (в какой-то момент я подозревал, что, возможно, php не может создать zip через HTTP - и это краткий ответ См. длинный ответ ниже.)

5
задан Obmerk Kronen 29 March 2012 в 01:54
поделиться