PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

Phar::webPhar> <Phar::uncompressAllFiles
Last updated: Fri, 22 Aug 2008

view this page in

Phar::unlinkArchive

(No version information available, might be only in CVS)

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

Descrição

bool Phar::unlinkArchive ( string $archive )

Parâmetros

archive

The path on disk to the phar archive.

Valor Retornado

Returns TRUE if the archive is successfully removed from disk.

Erros

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.

Exemplos

Exemplo #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');
?>



add a note add a note User Contributed Notes
Phar::unlinkArchive
There are no user contributed notes for this page.

Phar::webPhar> <Phar::uncompressAllFiles
Last updated: Fri, 22 Aug 2008
 
 
show source | credits | sitemap | contact | advertising | mirror sites