PHP8 RarArchive::getComment
rar_comment_get
(PECL rar >= 2.0.0)
RarArchive::getComment -- rar_comment_get — 从 RAR 存档中获取注释文本
说明
面向对象风格 (method):
public RarArchive::getComment(): string
过程化风格:
rar_comment_get(RarArchive $rarfile): string
获取存储在 RAR 存档中的(全局)注释。它的长度可能长达 64 KiB。
注意:此扩展不支持入门级的注释。
参数
rarfile
一个 RarArchive 对象,用 rar_open() 打开。
返回值
如果没有,则返回注释或 null。
注意:RAR 目前不支持 unicode 注释。的编码 未指定此函数的结果,但可能会指定 视窗 1252。
示例
示例 #1 面向对象风格
<?php
$rar_arch = RarArchive::open('commented.rar');
echo $rar_arch->getComment();
?>
以上示例的输出类似于:
This is the comment of the file commented.rar.
示例 #2 过程化风格
<?php
$rar_arch = rar_open('commented.rar');
echo rar_comment_get($rar_arch);
?>