PHP Doku:: Get name of the entry - rarentry.getname.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzErweiterungen zur Datenkompression und ArchivierungRar ArchivingThe RarEntry classRarEntry::getName

Ein Service von Reinhard Neidl - Webprogrammierung.

The RarEntry class

<<RarEntry::getMethod

RarEntry::getPackedSize>>

RarEntry::getName

(PECL rar >= 0.1)

RarEntry::getNameGet name of the entry

Beschreibung

public string RarEntry::getName ( void )

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

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

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

Changelog

Version Beschreibung
2.0.0 As of version 2.0.0, the returned string is encoded in Unicode/UTF-8.

Beispiele

Beispiel #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"
);

?>


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)