rpm_close

(PECL rpmreader >= 0.1.0)

rpm_closeCloses an RPM file

설명

bool rpm_close ( resource $rpmr )

rpm_close() will close an RPM file pointer.

인수

rpmr

A file pointer resource successfully opened by rpm_open().

반환값

성공 시 TRUE를, 실패 시 FALSE를 반환합니다.

예제

Example #1 rpm_close() example

<?php

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

rpm_close($rpmr);

?>

참고

add a note add a note

User Contributed Notes

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