PHP Doku:: Completely remove a phar archive from disk and from memory - phar.unlinkarchive.html

Verlauf / Chronik / History: (10) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzErweiterungen zur Datenkompression und ArchivierungPharThe Phar classPhar::unlinkArchive

Ein Service von Reinhard Neidl - Webprogrammierung.

The Phar class

<<Phar::uncompressAllFiles

Phar::webPhar>>

Phar::unlinkArchive

(PHP >= 5.3.0, PECL phar >= 2.0.0)

Phar::unlinkArchiveCompletely remove a phar archive from disk and from memory

Beschreibung

bool Phar::unlinkArchive ( string $archive )

Removes a phar archive for disk and memory.

Parameter-Liste

archive

The path on disk to the phar archive.

Rückgabewerte

Gibt bei Erfolg TRUE zurück. Im Fehlerfall wird FALSE zurückgegeben.

Fehler/Exceptions

PharException is thrown if there are any open file pointers to the phar archive, or any existing Phar, PharData, or PharFileInfo objects referring to the phar archive.

Beispiele

Beispiel #1 A Phar::unlinkArchive() example

<?php
// simple usage
Phar::unlinkArchive('/path/to/my.phar');

// more common example:
$p = new Phar('my.phar');
$fp fopen('phar://my.phar/file.txt''r');
// this creates 'my.phar.gz'
$gp $p->compress(Phar::GZ);
// remove all references to the archive
unset($p);
fclose($fp);
// now remove all traces of the archive
Phar::unlinkArchive('my.phar');
?>

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)