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

search for in the

RPM Reader Functions> <Examples
Last updated: Fri, 20 Nov 2009

view this page in

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
Basic usage
There are no user contributed notes for this page.

RPM Reader Functions> <Examples
Last updated: Fri, 20 Nov 2009
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites