标签: php task-parallel-library
如何在ktools .tpl文件中显示php。我试过了{php}echo'test';{/php},但它没有用。我还尝试了<? echo'test';?>和[php]echo'test';[/php]...这些都没有奏效。为什么这不起作用?
{php}echo'test';{/php}
<? echo'test';?>
[php]echo'test';[/php]...
答案 0 :(得分:0)
您需要显示test或echo 'test';?
test
echo 'test';
对于第二个变体,请尝试<pre>echo 'test';</pre>
<pre>echo 'test';</pre>