rpm_is_valid -- Tests a filename for validity as an RPM file
Описание
boolean rpm_is_valid ( string filename )
rpm_is_valid() will test an RPM file for
validity as an RPM file. This is not the same as
rpm_open() as it only checks the file for
validity but does not return a file pointer to be used by further
functions.
Список параметров
filename
The filename of the RPM file you wish to check for validity.
Возвращаемые значения
Возвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки.
Примеры
Пример 1. rpm_is_valid() example
<?php
$file = "/path/to/file.rpm";
if (rpm_is_valid($file)) {
echo "File is recognized as an RPM file.<br>\n";
}
else {
echo "File is not recognized as an RPM file.<br>\n";
}
?>
rpm_is_valid
There are no user contributed notes for this page.