web-dev-qa-db-ja.com

PHP POST Webフォームなしのデータ

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

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

少し早いですがお礼を。

15
Alan A

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);
22
VancleiP

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

1
Alix Axel