15

Web フォームを使用せずに POST データを送信する方法はありますか? サード パーティの支払い処理業者を使用しており、支払いを手動で送信するオプションがありますが、データは POST 形式である必要があります。

スクリプトを CRON ジョブとして実行する予定です。自動化されているため、Web フォーム送信によるユーザー入力はありません。

少し早いですがお礼を。

4

2 に答える 2

22

CURLを試す

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);
于 2013-10-18T16:39:19.017 に答える
1

cURL 拡張を使用することもfile_get_contents()、カスタム コンテキストを使用することもできます。

于 2013-10-18T16:39:46.020 に答える