在Smarty中,是否有一个标准函数或一种简单的方法可以从数组生成json,就像json_encode()在PHP中一样?
json_encode()
我想在Smarty文档中看不到它。
这应该工作。@使smarty对整个数组运行修饰符,否则对每个元素执行修饰符。
{$myarray|@json_encode}
如果启用$ escape_html,则需要使用nofilter:
nofilter
{$myarray|@json_encode nofilter}