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

search for in the

RPM Reader Funzioni> <Esempi
[edit] Last updated: Tue, 21 May 2013

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 - [0 notes]
There are no user contributed notes for this page.

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