Phar::unlinkArchive

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

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

설명

final public static bool Phar::unlinkArchive ( string $archive )

Removes a phar archive for disk and memory.

인수

archive

The path on disk to the phar archive.

반환값

성공 시 TRUE를, 실패 시 FALSE를 반환합니다.

오류/예외

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.

예제

Example #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

There are no user contributed notes for this page.
To Top