如何使用PHP 5.2远程提交带有POST变量的Web表单?
答案 0 :(得分:5)
非常基本的POST curl
$data = array(
'submit' => 'submit',
'field_1' => 'bleh'
);
$ch = curl_init('http://example.com');
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec();