私は、POSTリクエスト内でPHP Postリクエストを試してみましたが、それが自分にとって役立つかもしれないと考えています。私のコードを以下に示します。
$sub_req_url = "http://localhost/index1.php";
$ch = curl_init($sub_req_url);
$encoded = '';
// include GET as well as POST variables; your needs may vary.
foreach($_GET as $name => $value) {
$encoded .= urlencode($name).'='.urlencode($value).'&';
}
foreach($_POST as $name => $value) {
$encoded .= urlencode($name).'='.urlencode($value).'&';
}
// chop off last ampersand
$encoded = substr($encoded, 0, strlen($encoded)-1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $encoded);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_POST, 1);
curl_exec($ch);
curl_close($ch);
index.php
ファイルからindex2.php
、同じディレクトリ内の別のファイルであり、ページを開くと、ファイルに次のエラーが表示されerror.log
ます。
[Sat Dec 18 15:24:53 2010] [error] [client ::1] PHP Fatal error: Call to undefined function curl_init() in /var/www/testing1/index.php on line 5
私がやりたいのは、POSTリクエストを送信する予約フォームを用意することです。次に、POST値を処理し、PayPalにPOSTリクエストを再度送信します。