首页 国家数据 国家数据示例代码 获取国家地区信息[PHP]

获取国家地区信息示例代码[PHP]

作者: 阅读数:2158 上传时间:2019-07-15

获取国家地区信息

<?php
//获取国家地区信息
require_once 'curl.func.php';

$appkey = 'your_appkey_here';//你的appkey
$name= '中国';
$continent='亚洲';
$language='汉语';
$iscountry='0';

$url = "https://api.jisuapi.com/country/query?appkey=$appkey&name=$name&continent=$continent&language=$language&iscountry=$iscountry";
$result = curlOpen($url, ['ssl'=>true]);
$jsonarr = json_decode($result, true);

if($jsonarr['status'] != 0)
{
    echo $jsonarr['msg'];
    exit();
}
$country = $jsonarr['result'];     
echo $country['countryid'].' '.$country['name'].' '.$country['cname'].' '.$country['ename'].' '.$country['capital'].' '.$country['nationalanthem'].' '.$country['currency'].' '.$country['code'].' '.$country['language'].' '.$country['area'].' '.$country['timezone'].' '.$country['gdp'].' '.$country['avggdp'].' '.$country['areacode'].' '.$country['domain'].' '.$country['continent'].' '.$country['waterrate'].' '.$country['mainreligion'].' '.$country['maincity'].' '.$country['nationalday'].' '.$country['political'].' '.$country['leader'].' '.$country['population'].' '.$country['populationdensity'].' '.$country['mainethnic'].' '.$country['roadaccess'].' '.$country['mainuniversity'].' '.$country['nationalflag'].' '.$country['humanindex'].' '.$country['largestcity'].' '.$country['nationalflower'].' '.$country['geoposition'].' '.$country['foreignname'].' '.$country['nationalmotto'].' '.$country['govresidence'].' '.$country['climate'].' '.$country['iscountry"'].' '.$country['zimu'].'
';