PHP 8.4.2 Released!

rpmexpandnumeric

(PECL rpminfo >= 1.2.0)

rpmexpandnumericRetrieve numerical value of a RPM macro

说明

rpmexpandnumeric(string $text): int

Retrieve numerical value of a RPM macro.

参数

text

Text with RPM macros to expand.

返回值

Macro expansion as a int. Boolean values (Y or y returns 1, N or n returns 0) are permitted as well. An undefined macro returns 0.

示例

示例 #1 A rpmexpandnumeric() example

<?php
$bits
= rpmexpandnumeric("%__isa_bits");
print_r($bits);
?>

以上示例会输出:

64

参见

添加备注

用户贡献的备注

此页面尚无用户贡献的备注。
To Top