1. 程式人生 > >tp5獲取所有請求引數、請求頭和IP

tp5獲取所有請求引數、請求頭和IP

以下返回值都是陣列

$params = input('param.');//獲取所有,不分get、post、put。。
$gets = input('get.');//獲取所有get請求來的引數
$posts = input('post.');

以下返回值是字串

$id = input('get.id');//獲取get來的id的值
$password = input('post.password');

獲取user-agent請求頭(字串)

Request::instance()->header('user-agent');

獲取IP(字串)

Request::instance()->ip();