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

search for in the

Rar::extract> <rar_close
Last updated: Fri, 14 Nov 2008

view this page in

rar_entry_get

(No version information available, might be only in CVS)

rar_entry_getGet entry object from the Rar archive

Descrição

RarEntry rar_entry_get ( resource $rar_file , string $entry_name )

Get entry object from the Rar archive.

Parâmetros

rar_file

A Rar file resource, opened with rar_open().

entry_name

Path to the entry within the Rar archive.

Valor Retornado

rar_get_entry() returns entry object or FALSE on error.

Exemplos

Exemplo #1 rar_entry_get() example

<?php

$rar_file 
rar_open('example.rar') or die("Failed to open Rar archive");

$entry rar_entry_get($rar_file'Dir/file.txt') or die("Failed to find such entry");

print_r($entry);

?>



add a note add a note User Contributed Notes
rar_entry_get
There are no user contributed notes for this page.

Rar::extract> <rar_close
Last updated: Fri, 14 Nov 2008
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites