<?php
require_once 'curl.func.php';
$appkey = 'your_appkey_here';//你的appkey
$url = "http://api.binstd.com/calendar/holiday?appkey=$appkey";
$result = curlOpen($url);
$jsonarr = json_decode($result, true);
//exit(var_dump($jsonarr));
if($jsonarr['status'] != 0)
{
echo $jsonarr['msg'];
exit();
}
foreach($jsonarr['result'] as $key=>$val)
{
echo $key.' '.$val.'
';
}