CURL を使用して、あるサーバー(Server-1)
から別のサーバーにいくつかのデータを投稿する必要があります。(Server-2)
この場合、リクエスト ポスト サーバーのドメイン名を取得する必要がありますserver-2
。
では、リクエスト ポスト ドメイン名を取得するにはどうすればよい(server-1)
でしょServer-2
うか。
CURL で使用できるビルド内メソッドはありますか?
どんな助けでも大歓迎です。
サンプル :
サーバー-1 http://domain1.com
$serviceUrl = 'http://domain1.com/data';
$curl = curl_init($serviceUrl);
$curlPostData = array("data" => $data);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $curlPostData);
$curlResponse = curl_exec($curl);
curl_close($curl);
サーバー-2 http://domain2.com
<?php
$data = $_POST['data'];
//I need to get the http://domain1.com using curl or php?
// Some Code Process
?>
ありがとう