略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: RarEntry::getName

2024-04-30

RarEntry::getName

(PECL rar >= 0.1)

RarEntry::getNameGet name of the entry

说明

public RarEntry::getName(): string

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

参数

此函数没有参数。

返回值

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

更新日志

版本 说明
PECL rar 2.0.0 As of version 2.0.0, the returned string is encoded in Unicode/UTF-8.

范例

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

?>
add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/rarentry.getname.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3