在 Smarty 中,我希望能够编写 {widget 15} 或 {widget id=15} ,因此输出将是 PHP 函数的返回值
function widget($id){
echo 'hi '.$id;
}
是否可以 ?
最佳答案
Smarty 允许您轻松创建此类自定义函数: see the official reference 。
关于php - 自定义 Smarty 功能,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4313775/