Files
php-gtk-src/generator/array_printf.php
Andrei Zmievski cb2047dff4 More work on generator. We can now generate some methods - only those
that work with strings and integers, basically.
2004-11-06 08:48:34 +00:00

12 lines
202 B
PHP

<?php
function aprintf($tmpl, $array)
{
$array = (array)$array;
if (count($array) < 1) return $tmpl;
return preg_replace('!%\((\w+)\)!e', 'isset(\$array["$1"]) ? \$array["$1"] : ""', $tmpl);
}
?>