facebook twitter hatena line email

「Php/curl/基本」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
行4: 行4:
 
  $post["hoge"] = "piyo";
 
  $post["hoge"] = "piyo";
 
  $chost = curl_init();
 
  $chost = curl_init();
  curl_setopt($chost, CURLOPT_URL, "http://example/hogehoge.php");
+
  curl_setopt($chost, CURLOPT_URL, "ttp://example.com/hogehoge.php");
 
  curl_setopt($chost, CURLOPT_POST, true);
 
  curl_setopt($chost, CURLOPT_POST, true);
 
  curl_setopt($chost, CURLOPT_POSTFIELDS, $post);
 
  curl_setopt($chost, CURLOPT_POSTFIELDS, $post);

2017年11月29日 (水) 19:06時点における版

// POSTするデータ
$post["hoge"] = "piyo";
$chost = curl_init();
curl_setopt($chost, CURLOPT_URL, "ttp://example.com/hogehoge.php");
curl_setopt($chost, CURLOPT_POST, true);
curl_setopt($chost, CURLOPT_POSTFIELDS, $post);
curl_setopt($chost, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($chost);
curl_close($chost);
echo $result; // POST送信先から送り返されてくる内容