(PECL rar >= 2.0.0)
RarArchive::close -- rar_close — Close RAR archive and free all resources
Estilo orientado a objetos (method):
Estilo procedural:
Close RAR archive and free all allocated resources.
Retorna true
em caso de sucesso ou false
em caso de falha.
Versão | Descrição |
---|---|
PECL rar 2.0.0 | The RAR entries returned by RarArchive::getEntry() and RarArchive::getEntries() are now invalidated when calling this method. This means that all instance methods called for such entries and not guaranteed to succeed. |
Exemplo #1 Estilo orientado a objetos
<?php
$rar_arch = RarArchive::open('latest_winrar.rar');
echo $rar_arch."\n";
$rar_arch->close();
echo $rar_arch."\n";
?>
O exemplo acima produzirá algo semelhante a:
RAR Archive "D:\php_rar\trunk\tests\latest_winrar.rar" RAR Archive "D:\php_rar\trunk\tests\latest_winrar.rar" (closed)
Exemplo #2 Estilo procedural
<?php
$rar_arch = rar_open('latest_winrar.rar');
echo $rar_arch."\n";
rar_close($rar_arch);
echo $rar_arch."\n";
?>