rpmexpand

Retrieve expanded value of a RPM macro

Description

string rpmexpand(string $text)

Retrieve expanded value of a RPM macro.

Parameters

text

Text with RPM macros to expand.

Return Values

A string with concatenated macro expansion(s).

Examples

Example #1 A rpmexpand example

<?php
$distro = rpmexpand("%{?fedora:Fedora %{fedora}}%{?rhel:Enterprise Linux %{rhel}}");
print_r($distro);
?>

The above example will output:

Fedora 41

See Also

  • rpmexpandnumeric