array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'it', ), 'this' => array ( 0 => 'rarentry.getname.php', 1 => 'RarEntry::getName', 2 => 'Get name of the entry', ), 'up' => array ( 0 => 'class.rarentry.php', 1 => 'RarEntry', ), 'prev' => array ( 0 => 'rarentry.getmethod.php', 1 => 'RarEntry::getMethod', ), 'next' => array ( 0 => 'rarentry.getpackedsize.php', 1 => 'RarEntry::getPackedSize', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/rar/rarentry/getname.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

RarEntry::getName

(PECL rar >= 0.1)

RarEntry::getNameGet name of the entry

Descrizione

public RarEntry::getName(): string

Returns the name (with path) of the archive entry.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

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

Log delle modifiche

Versione Descrizione
PECL rar 2.0.0 As of version 2.0.0, the returned string is encoded in Unicode/UTF-8.

Esempi

Example #1 RarEntry::getName() example

<?php

//this example is safe even in pages not encoded in UTF-8
//for those encoded in UTF-8, the call to mb_convert_encoding is unnecessary

$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: " . mb_convert_encoding(
htmlentities(
$entry->getName(),
ENT_COMPAT,
"UTF-8"
),
"HTML-ENTITIES",
"UTF-8"
);

?>