码迷,mamicode.com
首页 > 其他好文 > 详细

Smarty之方法插件

时间:2016-06-05 22:56:41      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:

自定义方法

要放在plugins文件中,并且文件名必须按照smary的成品方法名格式来定义,一般是function.自定义名称.php.

例子:

<?php
function smarty_function_sub_change($args)
{
    $code = $args[‘code‘];
    $db = new MySQLi("localhost","root","","mydb");
    $sql = "select name from subject where code = ‘{$code}‘";
    $result = $db->query($sql);
    $arr = $result->fetch_row();
    return $arr[0];
}

 

Smarty之方法插件

标签:

原文地址:http://www.cnblogs.com/Itwonderful/p/5561977.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!