Как получить тот же результат без /e
eval
- улучшены показатели безопасности и скорости?
function finclude($file){
return include($file);
}
$str = "Today is {include 'date.php'}.";
echo preg_replace("/\{include '(.*)\'}/e", 'finclude("$1")', $str);
date.php:
<?php return date('jS \of F'); ?>, 2011
Результат: Today is 20th of July.