【摘要】 PHP 中的CURL 模拟表单的post提交考必过小编为大家整理了关于PHP 中的CURL 模拟表单的post提交的信息,希望可以帮助到大家!
PHP 中的CURL 模拟表单的post提交
标签:trancontaineclassinitretcommaddpnorm
废话不多说啦,直接上代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
|
这里需要注意的是:
要想以x-www-form-urlencoded 方式发送,最关键是发送的数据格式。
方式from-data试发送的数据用的是array格式,而方式为x-www-form-urlencoded 时需要用key=value&key2=value2的格式发送,发送的是string型的数据。
比如我上面from-data数据的为:
??????$data = [
‘username‘ => ‘乔峰‘,
‘skill‘ => ‘擒龙手‘
];
x-www-form-urlencoded时的数据则要变为
http_build_query($data);
PHP 中的CURL 模拟表单的post提交
标签:trancontaineclassinitretcommaddpnorm
以上就是PHP 中的CURL 模拟表单的post提交的内容,更多资讯请及时关注考必过网站,最新消息小编会第一时间发布,大家考试加油!