ソースコード


<?php

// POSTデータとクエリ化
$data = array(
    "animal_name" => "dog",
    "animal_value" => "101"
);
$data = http_build_query($data, "", "&");

// HTTPヘッダー情報
$header = array(
    "Content-Type: application/x-www-form-urlencoded",
    "Content-Length: ".strlen($data)
);

// HTTPリクエストの設定
$option = array(
    "http" => array(
        "method"  => "POST",
        "header"  => implode("¥r¥n", $header),
        "content" => $data
    )
);

// クロスドメイン通信先
$url = "http://amaraimusi.sakura.ne.jp/sample/php/cross_domain/file_get_contents/test_serv_side.php";

// クロスドメイン通信
$res = file_get_contents($url, false, stream_context_create($option));

echo $res;
?>

file_get_contentsで取得したコンテンツデータ

NONE