PHP 8.4.2 Released!

rpmexpand

(PECL rpminfo >= 1.2.0)

rpmexpandRetrieve expanded value of a RPM macro

Beschreibung

rpmexpand(string $text): string

Retrieve expanded value of a RPM macro.

Parameter-Liste

text

Text with RPM macros to expand.

Rückgabewerte

A string with concatenated macro expansion(s).

Beispiele

Beispiel #1 A rpmexpand() example

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

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

Fedora 41

Siehe auch

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top