Rar 函数
PHP 手册

Rar::getName

(PECL rar >= 0.1)

Rar::getNameGet name of the entry

说明

Rar
string getName ( void )

Rar::getName() returns full name of the archive entry.

返回值

Returns the entry name as a string, or FALSE on error.

范例

Example #1 Rar::getName() 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");

echo 
"Entry name: " $entry->getName();

?>


Rar 函数
PHP 手册