- PHP 手册
- 函数参考
- 压缩与归档扩展
- Phar
- Phar
Phar::unlinkArchive
(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL phar >= 2.0.0)
Phar::unlinkArchive — Completely remove a phar archive from disk and from memory
说明
final public static Phar::unlinkArchive(string$filename
): bool
Removes a phar archive from disk and memory.
参数
-
filename
-
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.
范例
示例 #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');
?>
参见
- Phar::delete() - 删除 phar 档案中的一个文件
- Phar::offsetUnset() - Remove a file from a phar
User Contributed Notes
There are no user contributed notes for this page.官方地址:https://www.php.net/manual/en/phar.unlinkarchive.php