rpmdbsearch
(PECL rpminfo >= 0.3.0)
Search RPM packages
Description
Search packages in the system RPM database.
Parameters
patternValue to search for.
rpmtagSearch criterion, which is one of the
RPMTAG_*constants.rpmmirePattern type, which is one of the
RPMMIRE_*constants. When < 0 the criterion must equal the value, and database index is used if possible.fullIf true all information headers for the file are retrieved, else only a minimal set.
Return Values
An array of array of information, or null on error.
Examples
Searching for the package owning a file
<?php
$info = rpmdbsearch("/usr/bin/php", RPMTAG_INSTFILENAMES);
print_r($info);
?>The above example will output:
Array
(
[0] => Array
(
[Name] => php-cli
[Version] => 7.4.4
[Release] => 1.fc32
[Summary] => Command-line interface for PHP
[Arch] => x86_64
)
)