通过 cURL 发布数据
可以使用 cURL 来实现将 $_POST 值传递到不同的页面。该过程涉及激活 HTTP POST 并将 cURL 的 post 字段设置为
实现:
$data = ['name' => 'Ross', 'php_master' => true]; // File upload support $data['file'] = '@/home/user/world.jpg'; $handle = curl_init($url); curl_setopt($handle, CURLOPT_POST, true); curl_setopt($handle, CURLOPT_POSTFIELDS, $data); curl_exec($handle); curl_close($handle);
选项:
发布数据编码:
cURL 可以对数据进行编码一分为二格式:
curl_setopt($handle, CURLOPT_POSTFIELDS, $data);
curl_setopt($handle, CURLOPT_POSTFIELDS, http_build_query($data));
其他资源:
以上是如何使用cURL提交POST数据?的详细内容。更多信息请关注PHP中文网其他相关文章!