有没有办法在不使用 Web 表单的情况下发送 POST 数据?我正在使用第 3 方付款处理器,我可以选择手动提交付款,但数据需要采用 POST 格式。
我计划将我的脚本作为 CRON 作业运行,因此它是自动化的,因此无需用户通过 Web 表单提交进行输入。
预先感谢。
试试卷曲
http://php.net/manual/en/book.curl.php
//set POST variables
$url = 'http://domain.com/get-post.php';
$fields = array(
'lname' => urlencode($last_name),
'fname' => urlencode($first_name),
'title' => urlencode($title),
'company' => urlencode($institution),
'age' => urlencode($age),
'email' => urlencode($email),
'phone' => urlencode($phone)
);
//url-ify the data for the POST
foreach($fields as $key=>$value) { $fields_string .= $key.'='.$value.'&'; }
rtrim($fields_string, '&');
//open connection
$ch = curl_init();
//set the url, number of POST vars, POST data
curl_setopt($ch,CURLOPT_URL, $url);
curl_setopt($ch,CURLOPT_POST, count($fields));
curl_setopt($ch,CURLOPT_POSTFIELDS, $fields_string);
//execute post
$result = curl_exec($ch);
//close connection
curl_close($ch);
您可以使用 cURL 扩展,甚至可以使用file_get_contents()
自定义上下文。