rar_entry_get
(PECL rar >= 0.1)
rar_entry_get — Get entry object from the Rar archive
설명
RarEntry rar_entry_get
( resource $rar_file
, string $entry_name
)
Get entry object from the Rar archive.
인수
- rar_file
-
A Rar file resource, opened with rar_open().
- entry_name
-
Path to the entry within the Rar archive.
반환값
rar_entry_get() returns entry object or FALSE on error.
예제
Example #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);
?>
rar_entry_get
There are no user contributed notes for this page.
