- vprintf: documentation ( source)
<?php
$pencilbanner = 'hol';
$bannerData = match($pencilbanner) {
'std' => ['standard-banner', 'This is the standard banner'],
'hol' => ['holiday-banner', 'This is the holiday banner'],
'lim' => ['standard-banner', 'This is the limited time only banner'],
default => [],
};
if ($bannerData) {
vprintf('<div class="banner %s"><h4>%s</h4></div>', $bannerData);
}