update : 2015.11.03
php.shukuma.com

검색:
 
 
Delete a file within a phar archive

Phar::delete

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

Phar::deleteDelete a file within a phar archive

설명

public bool Phar::delete ( string $entry )

Note:

이 메쏘드가 Phar 객체에 작용하려면 php.ini 설정 phar.readonly0으로 설정해야 합니다. 그렇지 않으면, PharException이 발생합니다.

Delete a file within an archive. This is the functional equivalent of calling unlink() on the stream wrapper equivalent, as shown in the example below.

인수

entry

Path within an archive to the file to delete.

반환값

returns TRUE on success, but it is better to check for thrown exception, and assume success if none is thrown.

오류/예외

Throws PharException if errors occur while flushing changes to disk.

예제

Example #1 A Phar::delete() example

<?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
}
?>

참고