mirror of
https://github.com/php/php-gtk-src.git
synced 2026-03-24 17:22:10 +01:00
12 lines
174 B
PHP
12 lines
174 B
PHP
<?php
|
|
|
|
function aprintf($tmpl, $array)
|
|
{
|
|
$array = (array)$array;
|
|
if (count($array) < 1) return $tmpl;
|
|
|
|
return preg_replace('!%\((\w+)\)!e', '\$array["$1"]', $tmpl);
|
|
}
|
|
|
|
?>
|