Archive_Tar::add()

Archive_Tar::add() -- add files or directories

Synopsis

require_once 'Archive/Tar.php';

boolean add (mixed $filelist)

Beschreibung

This method adds files and directories to an existing archive. If the archive does not exist, it attempts to create it. The files and directories listed are added at the end of the archive, even if a file with the same name is already archived.

Parameter

Rückgabewert

boolean - Gibt bei Erfolg TRUE zurück, bei einem Fehler FALSE.

Fehler-Meldungen

Tabelle 39-1. Mögliche Fehler-Arten

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

Hinweise

Diese Methode kann nicht statisch aufgerufen werden.

Beispiel