<?php
require_once 'curl.func.php';
$appkey = 'your_appkey_here';//你的appkey
$pic = 'http://api.binstd.com/imageidentification/2.jpg';
$url = "http://api.binstd.com/imageidentification/identify?appkey=$appkey&pic=$pic";
$result = curlOpen($url);
$jsonarr = json_decode($result, true);
if($jsonarr['status'] != 0)
{
echo $jsonarr['msg'];
exit();
}
$result = $jsonarr['result'];
echo $result['pic'].' '.$result['type'].' '.$result['score'];