Phar::delete

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

Phar::deleteɾ�� phar �����е�һ���ļ�

˵��

public Phar::delete ( string $entry ) : bool

Note:

�˷�����Ҫ �� php.ini �е� phar.readonly ��Ϊ 0 ���ʺ� Phar ����. ����, ���׳�PharException.

ɾ�������е�һ���ļ����������������ʾ���е��� unlink() ������������װ���ķ�ʽ�ȼۡ�

����

entry

��Ҫɾ�����ļ��ڵ����е�·����

����ֵ

�ɹ�ʱ���� TRUE��������û��Ǽ��һ���Ƿ��׳����쳣�����û���׳��������϶������ɹ���

�����쳣

������޸ı��浽����ʱ�����˴��󣬻��׳� PharException �쳣��

����

Example #1 һ�� Phar::delete() ʾ��

<?php
try {
    
$phar = new Phar('myphar.phar');
    
$phar->delete('unlink/me.php');
    
// this is equivalent to:
    
unlink('phar://myphar.phar/unlink/me.php');
} catch (
Exception $e) {
    
// handle errors
}
?>

�μ�