rpm_open

(PECL rpmreader >= 0.1.0)
Opens an RPM file
resource rpm_open ( string $filename )

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

Parameters:
filename

The filename of the RPM file you wish to open.

Returns:

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.

Examples:
rpm_open() example
<?php

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

rpm_close($rpmr);

?>

See also:

rpm_close() -

doc_php
2016-02-24 16:04:37
Comments
Leave a Comment

Please login to continue.