首页 成语大全 成语大全示例代码 成语查询[PHP]

成语查询示例代码[PHP]

作者: 阅读数:1552 上传时间:2016-03-10

成语查询

<?php

require_once 'curl.func.php';

$appkey = 'your_appkey_here';//你的appkey
$chengyu = '叶公好龙';//utf8
$url = "https://api.jisuapi.com/chengyu/detail?appkey=$appkey&chengyu=$chengyu";
$result = curlOpen($url, ['ssl'=>true]);

$jsonarr = json_decode($result, true);
//exit(var_dump($jsonarr));

if($jsonarr['status'] != 0)
{
    echo $jsonarr['msg'];
    exit();
}

$result = $jsonarr['result'];
echo $result['name'].' '.$result['pronounce'].' '.$result['content'].' '.$result['comefrom'].' '.implode(' ',$result['antonym']).' '.implode(' ', $result['thesaurus']).' '.$result['example'].'
';