标签:
对于$_GET/$_POST:使用控制器方法参数
例如:
class IndexAction extends Action {
public function index($cat_id=1,$page_id=2){
echo $cat_id;
echo "<br>";
echo $page_id;
}
}
对于$_SESSION/$_COOKIE
session(‘name‘);
session(‘name‘,‘value‘);
cookie(‘name‘);
cookie(‘name‘,‘value‘);
对于除了$_FILES外,都可使用
$this->方法名("变量名",["过滤方法"],["默认值"])
例如:
$this->_get(‘cat_id‘);
$this->_post(‘title‘);
$this->_session(‘abc‘);
$this->_cookie(‘efg‘);
$this->_server(‘REMOTE_ADDR‘);
使用了默认过滤规则:即函数:htmlspecialchars
可:使用时自定义:$this->_get(‘cat_id‘,‘htmlspecialchars,strip_tags‘,0);
可:在配置文件中自定义:‘DEFAULT_FILTER‘=>‘htmlspecialchars,strip_tags‘,
标签:
原文地址:http://www.cnblogs.com/q3114140374/p/4608201.html