rpm_close

(PECL rpmreader >= 0.1.0)

rpm_closeCloses an RPM file

Opis

rpm_close ( resource $rpmr ) : bool

rpm_close() will close an RPM file pointer.

Parametry

rpmr

A file pointer resource successfully opened by rpm_open().

Zwracane wartości

Zwraca TRUE w przypadku powodzenia, FALSE w przypadku błędu.

Przykłady

Przykład #1 rpm_close() example

<?php

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

rpm_close($rpmr);

?>

Zobacz też:

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top