downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

rpm_open> <rpm_get_tag
[edit] Last updated: Fri, 24 May 2013

view this page in

rpm_is_valid

(PECL rpmreader >= 0.1.0)

rpm_is_validTests a filename for validity as an RPM file

Descrição

bool 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.

Parâmetros

filename

The filename of the RPM file you wish to check for validity.

Valor Retornado

Retorna TRUE em caso de sucesso ou FALSE em caso de falha.

Exemplos

Exemplo #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";
}

?>



add a note add a note User Contributed Notes rpm_is_valid - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites