(no version information, might be only in CVS)
rpm_close() will close an RPM file pointer.
A file pointer resource successfully opened by rpm_open().
Returns TRUE on success or FALSE on failure.
Example 1. rpm_close() example
<?php $file = "/path/to/file.rpm"; $rpmr = rpm_open($file); rpm_close($rpmr); ?>