dismiss Step into the future! Click here to switch to the beta php.net site
downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

rpm_is_valid> <rpm_close
[edit] Last updated: Fri, 28 Jun 2013

view this page in

rpm_get_tag

(PECL rpmreader >= 0.1.0)

rpm_get_tagRetrieves a header tag from an RPM file

Description

mixed rpm_get_tag ( resource $rpmr , int $tagnum )

rpm_get_tag() will retrieve a given tag from the RPM file's header and return it.

Parameters

rpmr

A file pointer resource successfully opened by rpm_open().

tagnum

The tag number to retrieve from the RPM header. This value can be specified using the list of constants defined by this module.

Return Values

The return value can be of various types depending on the tagnum supplied to the function.

Examples

Example #1 rpm_get_tag() example

<?php

$file 
"/path/to/file.rpm";
$rpmr rpm_open($file);

$name rpm_get_tag($rpmrRPMREADER_NAME);
echo 
"$name<br>\n";

rpm_close($rpmr);

?>

See Also



add a note add a note User Contributed Notes rpm_get_tag - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites