php 如何同时发送 get 和 post 以及 cookie?
php how to send get and post and cookie at once?
如何一次性发送get&post&cookie?
if($_GET[get] && $_POST[post] && $_COOKIE[cookie])
{
//blah blah
}
如何立即发送该代码的 get,post,cookie 数据??
请给我一个示例代码!
我用了form tag但是不能一次发送但是我不知道怎么一次发送
听起来像你想要的 $_REQUEST
- 这是默认设置 "An associative array that by default contains the contents of $_GET
, $_POST
and $_COOKIE
."
请注意,使用 $_REQUEST
会丢失有关变量来源的信息,因此建议使用单个变量,或将 $_REQUEST
设置为仅包含 GET
和 POST
数据,POST
覆盖 GET
:$_REQUEST = array_merge($_GET, $_POST);
如何一次性发送get&post&cookie?
if($_GET[get] && $_POST[post] && $_COOKIE[cookie])
{
//blah blah
}
如何立即发送该代码的 get,post,cookie 数据?? 请给我一个示例代码!
我用了form tag但是不能一次发送但是我不知道怎么一次发送
听起来像你想要的 $_REQUEST
- 这是默认设置 "An associative array that by default contains the contents of $_GET
, $_POST
and $_COOKIE
."
请注意,使用 $_REQUEST
会丢失有关变量来源的信息,因此建议使用单个变量,或将 $_REQUEST
设置为仅包含 GET
和 POST
数据,POST
覆盖 GET
:$_REQUEST = array_merge($_GET, $_POST);