downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

RarArchive::open> <RarArchive::isBroken
[edit] Last updated: Fri, 17 May 2013

view this page in

RarArchive::isSolid

rar_solid_is

(PECL rar >= 2.0.0)

RarArchive::isSolid -- rar_solid_isCheck whether the RAR archive is solid

Descrição

Estilo orientado à objeto (method):

public bool RarArchive::isSolid ( void )

Estilo procedural:

bool rar_solid_is ( RarArchive $rarfile )

Check whether the RAR archive is solid. Individual file extraction is slower on solid archives.

Parâmetros

rarfile

A RarArchive object, opened with rar_open().

Valor Retornado

Returns TRUE if the archive is solid, FALSE otherwise.

Exemplos

Exemplo #1 Estilo orientado à objeto

<?php
$arch1 
RarArchive::open("store_method.rar");
$arch2 RarArchive::open("solid.rar");
echo 
"$arch1: " . ($arch1->isSolid()?'yes':'no') ."\n";
echo 
"$arch2: " . ($arch2->isSolid()?'yes':'no') . "\n";
?>

O exemplo acima irá imprimir algo similar à:

RAR Archive "C:\php_rar\trunk\tests\store_method.rar": no
RAR Archive "C:\php_rar\trunk\tests\solid.rar": yes

Exemplo #2 Estilo procedural

<?php
$arch1 
rar_open("store_method.rar");
$arch2 rar_open("solid.rar");
echo 
"$arch1: " . (rar_solid_is($arch1)?'yes':'no') ."\n";
echo 
"$arch2: " . (rar_solid_is($arch2)?'yes':'no') . "\n";
?>



add a note add a note User Contributed Notes RarArchive::isSolid - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites