我正在使用尘埃的PHP分支:http://cretz.github.io/dust-php/
以下代码可以正常使用:
$compiled = $dust->compile('Hi {name}.');
echo $dust->renderTemplate($compiled, ['name' => 'John Doe']);
但以下失败:
echo $dust->renderTemplate($compiled, ['name' => 'link']);
出现此错误:
PHP Warning: link() expects parameter 1 to be a valid path, object given in /var/www/grallo2/vendor/dust-php/dust-php/src/Dust/Evaluate/Evaluator.php on line 342
似乎灰尘试图执行PHP功能。有什么方法可以避免这种情况吗?