Rar::getName
(PECL rar >= 0.1)
Rar::getName — Get name of the entry
Description
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.
Changelog
| Version | Description |
|---|---|
| 2.0.0 | As of version 2.0.0, the returned string is encoded in Unicode/UTF-8. |
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();
?>
Rar::getName
There are no user contributed notes for this page.
