PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

RPM Reader Functions> <Predefined Constants
Last updated: Wed, 23 Jul 2008

view this page in

Examples

Basic usage

This example will open an RPM file and read the name, version, and release from the RPM file, echo the results, and close the RPM file.

Example #1 Basic RPMReader Example

<?php

$filename 
"/path/to/file.rpm";

// open file
$rpmr rpm_open($filename);

// get "Name" tag
$name rpm_get_tag($rpmrRPMREADER_NAME);

// get "Version" tag
$ver rpm_get_tag($rpmrRPMREADER_VERSION);

// get "Release" tag
$rel rpm_get_tag($rpmrRPMREADER_RELEASE);

echo 
"$name-$ver-$rel<br>\n";

// close file
rpm_close($rpmr);

?>


add a note add a note User Contributed Notes
Examples
There are no user contributed notes for this page.

RPM Reader Functions> <Predefined Constants
Last updated: Wed, 23 Jul 2008
 
 
show source | credits | sitemap | contact | advertising | mirror sites