[php]
class ChoiceUserWidget extends Widget{
public function render($data){
$s['num']=$data[0];
$s['key']=$data[1];
$content = $this->renderFile('select_user',$s);
return $content;
}
}
[/php]
模版调用
{:W('ChoiceUser',array(9,usertype))}
转载于:https://www.cnblogs.com/freefei/archive/2013/03/04/3234987.html