rpmdbsearch
(PECL rpminfo >= 0.3.0)
rpmdbsearch — Search RPM packages
说明
rpmdbsearch(
string
int
int
bool
): ?array
string
$pattern
,int
$rpmtag
= RPMTAG_NAME,int
$rpmmire
= -1,bool
$full
= false
): ?array
Search packages in the system RPM database.
参数
pattern
- Value to search for.
rpmtag
-
Search criterion, which is one of the
RPMTAG_*
constants. rpmmire
-
Pattern type, which is one of the
RPMMIRE_*
constants. When < 0 the criterion must equal the value, and database index is used if possible. full
-
If
true
all information headers for the file are retrieved, else only a minimal set.
示例
示例 #1 Searching for the package owning a file
<?php
$info = rpmdbsearch("/usr/bin/php", RPMTAG_INSTFILENAMES);
print_r($info);
?>
以上示例会输出:
Array ( [0] => Array ( [Name] => php-cli [Version] => 7.4.4 [Release] => 1.fc32 [Summary] => Command-line interface for PHP [Arch] => x86_64 ) )
参见
- rpmaddtag() - Add tag retrieved in query
+添加备注
用户贡献的备注
此页面尚无用户贡献的备注。