PHP 8.4.2 Released!

rpmexpand

(PECL rpminfo >= 1.2.0)

rpmexpandRetrieve expanded value of a RPM macro

Açıklama

rpmexpand(string $text): string

Retrieve expanded value of a RPM macro.

Bağımsız Değişkenler

text

Text with RPM macros to expand.

Dönen Değerler

A string with concatenated macro expansion(s).

Örnekler

Örnek 1 A rpmexpand() example

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

Yukarıdaki örneğin çıktısı:

Fedora 41

Ayrıca Bakınız

add a note

User Contributed Notes

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