PHP で URL にデータを送信する
PHP で URL に POST データを送信することは、特に Web サービスを使用する場合に一般的なタスクです。またはスクリプトからフォームを送信します。この記事では、HTML フォームを利用せずにこれを行う方法を検討します。
Curl to the Rescue
PHP には、curl ライブラリが用意されています。 Web リクエストを操作します。 POST データを送信するには、curl を使用します。
// Sample data to send (in a real application, these variables will be dynamic) $myVar1 = 'value 1'; $myVar2 = 'value 2'; // URL to post data to $url = 'http://www.example.com/form.php'; // Create a cURL handle $ch = curl_init($url); // Set cURL options curl_setopt($ch, CURLOPT_POST, 1); // Set as POST request curl_setopt($ch, CURLOPT_POSTFIELDS, "myVar1=$myVar1&myVar2=$myVar2"); // Set POST data curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); // Follow redirects curl_setopt($ch, CURLOPT_HEADER, 0); // Do not return headers in response curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // Return the response as a string // Execute the cURL request $response = curl_exec($ch); // Close the cURL handle curl_close($ch); // Process the response // In this example, a successful response would likely indicate that the form on the target page was submitted
このスクリプトは、POST データを指定された URL に送信し、サーバーからの応答は $response に保存されます。 $myVar1、$myVar2、$url を実際のデータとターゲット URL に置き換えることを忘れないでください。
以上がHTML フォームを使用せずに PHP で POST データを URL に送信するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。