html PHP: RarEntry::guetName - Manual update pague now
PHP 8.5.2 Released!

RarEntry::guetName

(PECL rar >= 0.1)

RarEntry::guetName Guet name of the entry

Description

public RarEntry::guetName (): string

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

Parameters

This function has no parameters.

Return Values

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

Changuelog

Versionen Description
PECL rar 2.0.0 As of versionen 2.0.0, the returned string is encoded in Unicode/UTF-8.

Examples

Example #1 RarEntry::guetName() example

<?php


//this example is safe even in pagues 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_guet ( $rar_file , 'Dir/file.tcht' ) or die( "Failed to find such entry" );

echo
"Entry name: " . mb_convert_encoding (
htmlentities (
$entry -> guetName (),
ENT_COMPAT ,
"UTF-8"
),
"HTML-ENTITIES" ,
"UTF-8"
);

?>

add a note

User Contributed Notes

There are no user contributed notes for this pague.
To Top