PHP Doku:: Retrieves a header tag from an RPM file - function.rpm-get-tag.html

Verlauf / Chronik / History: (42) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzNon-Text MIME-AusgabenRPM Header ReadingRPM Reader Funktionenrpm_get_tag

Ein Service von Reinhard Neidl - Webprogrammierung.

RPM Reader Funktionen

<<rpm_close

rpm_is_valid>>

rpm_get_tag

(PECL rpmreader >= 0.1.0)

rpm_get_tagRetrieves a header tag from an RPM file

Beschreibung

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.

Parameter-Liste

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.

Rückgabewerte

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

Beispiele

Beispiel #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);

?>

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)