欢迎各位兄弟 发布技术文章
这里的技术是共享的
$id = $_GET['id']; // 获取get变量
$name = $_POST['name']; // 获取post变量
$value = $_SESSION['var']; // 获取session变量
$name = $_COOKIE['name']; // 获取cookie变量
$file = $_SERVER['PHP_SELF']; // 获取server变量
复制代码
$id = $this->_get('id'); // 获取get变量
$name = $this->_post('name'); // 获取post变量
$value = $this->_session('var'); // 获取session变量
$name = $this->_cookie('name'); // 获取cookie变量
$file = $this->_server('PHP_SELF'); // 获取server变量
复制代码
方法名 | 含义 |
---|---|
_get | 获取GET参数 |
_post | 获取POST参数 |
_param | 自动判断请求类型获取GET、POST或者PUT参数 |
_request | 获取REQUEST参数 |
_put | 获取PUT参数 |
_session | 获取$_SESSION参数 |
_cookie | 获取$_COOKIE参数 |
_server | 获取$_SERVER参数 |
_globals | 获取$GLOBALS参数 |
$this->_get("name");
复制代码
$this->_get("name","strip_tags");
复制代码
$this->_get("id","strip_tags",0);
复制代码
'DEFAULT_FILTER'=>'strip_tags'
复制代码
'DEFAULT_FILTER'=>'strip_tags,htmlspecialchars'
复制代码
$name = $this->_post('content','trim,strip_tags'); // 获取post变量并过滤
复制代码
$name = $this->_post('id','',0);
复制代码
$this->_param('id');
复制代码
$this->_get('id');
复制代码
$this->_post('id');
复制代码
$this->_put('id');
复制代码
http://localhost/index.php/news/hello_world/thinkphp
复制代码
$this->_param(0); // 获取news
$this->_param(1); // 获取hello_world
$this->_param(2); // 获取thinkphp
复制代码
'VAR_FILTERS'=>'strip_tags'
复制代码
$this->data($data)->filter('strip_tags')->add();
复制代码