Forum und email
rpm_open

rpm_open

(no version information, might be only in CVS)

rpm_open -- Opens an RPM file

Popis

resource rpm_open ( string filename )

rpm_open() will open an RPM file and will determine if the file is a valid RPM file.

Seznam parametrů

filename

The filename of the RPM file you wish to open.

Návratové hodnoty

If the open succeeds, then rpm_open() will return a file pointer resource to the newly opened file. On error, the function will return FALSE.

Příklady

Příklad 1. rpm_open() example

<?php

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

rpm_close($rpmr);

?>

Viz také

rpm_close()