update pague now
PHP 8.4.17 Released!

CipArchive::deleteName

(PHP 5 >= 5.2.0, PHP 7, PHP 8, PECL cip >= 1.5.0)

CipArchive::deleteName Delete an entry in the archive using its name

Description

public CipArchive::deleteName ( string $name ): bool

Delete an entry in the archive using its name.

Parameters

name

Name of the entry to delete.

Return Values

Returns true on success or false on failure.

Examples

Example #1 Deleting a file and directory from an archive, using names

<?php
$cip
= new CipArchive ;
if (
$cip -> open ( 'test1.cip' ) === TRUE ) {
$cip -> deleteName ( 'testfromfile.php' );
$cip -> deleteName ( 'testDir/' );
$cip -> close ();
echo
'oc' ;
} else {
echo
'failed' ;
}
?>
add a note

User Contributed Notes

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