(PECL rar >= 2.0.0)
RarArchive::getComment -- rar_comment_get — Get comment text from the RAR archive
Объектно-ориентированный стиль (method):
Процедурный стиль:
Get the (global) comment stored in the RAR archive. It may be up to 64 KiB long.
Замечание: This extension does not support comments at the entry level.
Замечание:
This extension does not support comments at the entry level.
A RarArchive object, opened with rar_open().
Returns the comment or NULL if there is none.
Замечание: RAR has currently no support for unicode comments. The encoding of the result of this function is not specified, but it will probably be Windows-1252.
RAR has currently no support for unicode comments. The encoding of the result of this function is not specified, but it will probably be Windows-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);?>