我使用 Smarty 3,并尝试使用参数扩展我的链接。
这工作正常:
<a href="{$smarty.const.FILENAME_DEFAULT|xtc_href_link:'filter_license=1'}" class="btn btn-default btn-lg {if $smarty.get.filter_license == '1'}active{/if}">some text</a>
但是,当我尝试使用现有$_GET
参数扩展此链接时,它会导致语法错误并且我得到一个白页。
<a href="{$smarty.const.FILENAME_DEFAULT|xtc_href_link:'cPath=$smarty.get.cPath&filter_license=1'}" class="btn btn-default btn-lg {if $smarty.get.filter_license == '1'}active{/if}">some text</a>
$_GET
参数类似于 cPath= 1_3
还有另一种方法可以在 smarty 中调用 smarty 变量吗?