<?php

header("Content-type: text/html; charset=utf-8"); 

$postdata = http_build_query(
    array(
        'key' => '1e41b2af8cf5943b6e24d509adb8764d',
        'v' => '1.0',
                'month' => date('m'),
                'day' => date('d')
    )
);

$opts = array('http' =>
    array(
        'method'  => 'POST',
        'header'  => 'Content-type: application/x-www-form-urlencoded',
        'content' => $postdata
    )
);

$context = stream_context_create($opts);

$result = file_get_contents('http://japi.juhe.cn/toh/toh', false, $context);

$result = json_decode($result, true);

echo '<pre>';
print_r($result);
echo '</pre>';

?>

参考文献:http://php.net/manual/zh/context.http.php