ArininAV

Archive_Tar::createModify()

Archive_Tar::createModify() -- create a new archive

Synopsis

require_once 'Archive/Tar.php';

boolean createModify (array $filelist, string $add_dir [, string $remove_dir = ''])

Описание

This method creates the archive file and adds the listed files or directories.

If the file already exists and is writable, it is replaced by the new tar. It is a 'create' and not a 'add'. If the file exists and is read-only or is a directory, it is not replaced.

Параметр

Возвращаемое значение

boolean - Возвращает TRUE в случае успеха и FALSE при неудаче.

Throws

Таблица 37-1. Возможные значения PEAR_Error

Error codeError messageReasonSolution
NULL"Invalid file list"The argument for the function is not correctly formatted or build. Check for typing mistakes in the argument

Заметка

Эта функция не должна вызываться статически.

Пример