PHP 8.4.2 Released!

rpmexpand

(PECL rpminfo >= 1.2.0)

rpmexpandRetrieve expanded value of a RPM macro

Опис

rpmexpand(string $text): string

Retrieve expanded value of a RPM macro.

Параметри

text

Text with RPM macros to expand.

Значення, що повертаються

A string with concatenated macro expansion(s).

Приклади

Приклад #1 A rpmexpand() example

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

Поданий вище приклад виведе:

Fedora 41

Прогляньте також

add a note

User Contributed Notes

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