rpm_is_valid

(PECL rpmreader >= 0.1.0)
Tests a filename for validity as an RPM file
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.

Parameters:
filename

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

Returns:

Returns TRUE on success or FALSE on failure.

Examples:
rpm_is_valid() example
1
2
3
4
5
6
7
8
9
10
11
12
<?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";
}
 
?>
doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.