rpm_close
(PECL rpmreader:0.1-0.3)
rpm_close — Closes an RPM file
Description
   bool rpm_close
    ( resource $rpmr
   )
  rpm_close() will close an RPM file pointer.
Return Values
Επιστρέφει TRUE σε επιτυχία ή FALSE σε αποτυχία.
Παραδείγματα
Example#1 rpm_close() example
<?php
$file = "/path/to/file.rpm";
$rpmr = rpm_open($file);
rpm_close($rpmr);
?>