<?php
require_once 'curl.func.php';
$appkey = 'your_appkey_here';//你的appkey
$question = '杭州天气';//问题(utf8)
$url = "http://api.binstd.com/iqa/query?appkey=$appkey&question=$question";
$result = curlOpen($url);
$jsonarr = json_decode($result, true);
//var_dump($jsonarr);
if($jsonarr['status'] != 0)
{
    echo $jsonarr['msg'];
    exit();
}
$result = $jsonarr['result'];
echo $result['type'].' '.$result['content'] . '
';
foreach($result['relquestion'] as $val)
{
    echo $val.'
';
}