PHP קוד:
<?php
$text = "My name is: {name} and i love play {game} and i work at {company_name}";
$data['name'] = "Haim";
$data['game'] = "Basketball";
$data['company_name'] = "Haimz.net";
$text = preg_replace_callback("/\{([a-zA-Z0-9_]+?)\}/", "replaceVars", $text);
function replaceVars($match)
{
global $data;
return $data[$match[1]];
}
echo $text;
?>