(PECL rar >= 2.0.0)
RarArchive::getComment -- rar_comment_get — 从 RAR 存档获取注释文本
面向对象风格(方法)
过程式风格
获取存储在 RAR 存档中的(全局)注释。它可能长达 64 KiB。
注意:
此扩展不支持条目级别的注释。
示例 #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);
?>