Archive_Tar::create()

Archive_Tar::create() -- create archive file

Synopsis

require_once 'Archive/Tar.php';

boolean create (mixed $filelist)

Beschreibung

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

If a file with the same tar name exists and is writable, it is replaced by the new tar archive (it is not an 'add', but a 'create'). If a file exists and is write-protected or is a folder, the method raises a PEAR_Error.

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