Rar::getName
(PECL rar >= 0.1)
Rar::getName — Get name of the entry
Opis
Rar
string getName
( void
)
Rar::getName() returns full name of the archive entry.
Zwracane wartości
Returns the entry name as a string, or FALSE on error.
Rejestr zmian
| Wersja | Opis |
|---|---|
| 2.0.0 | As of version 2.0.0, the returned string is encoded in Unicode/UTF-8. |
Przykłady
Przykład #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.
