Python sözlükleri kullanarak string değişimini ele bu harika bir yolu vardır:
>>> 'The %(site)s site %(adj)s because it %(adj)s' % {'site':'Stackoverflow', 'adj':'rocks'}
'The Stackoverflow site rocks because it rocks'
Eğer sözlükte bir kez değerini belirtmek ve sonra dize yere tüm değiştirebilirsiniz, çünkü bu aşk.
Ben işlevleri yerine değişik bir dize kullanarak PHP benzer bir şey elde etmek için denedim ama ben geldim her şey garip hissediyor.
Herkes PHP dize ikame bu tür yapmak için bir güzel temiz bir yolu var mı?
Edit
Here's the code from the sprintf page that I liked best.
<?php
function sprintf3($str, $vars, $char = '%')
{
$tmp = array();
foreach($vars as $k => $v)
{
$tmp[$char . $k . $char] = $v;
}
return str_replace(array_keys($tmp), array_values($tmp), $str);
}
echo sprintf3( 'The %site% site %adj% because it %adj%', array('site'=>'Stackoverflow', 'adj'=>'rocks'));
?>