<?php
require_once 'curl.func.php';
$appkey = 'your_appkey_here';//你的appkey
$url = "http://api.binstd.com/news/channel?appkey=$appkey";
$result = curlOpen($url);
$jsonarr = json_decode($result, true);
if($jsonarr['status'] != 0)
{
echo $jsonarr['msg'];
exit();
}
$result = $jsonarr['result'];
$result = implode(', ', $result);
echo $result . '
';