Rar::getName

(no version information, might be only in CVS)

Rar::getName -- Get name of the entry

Description

class Rar {

string getName ( void )

}

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

Return Values

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

Examples

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();

?>