接口地址

https://api.vvhan.com/api/denglong

返回格式

JSON

请求方式:

GET

请求示例(旧):

https://api.vvhan.com/api/denglong

请求示例(新):

https://api.vvhan.com/api/denglong2

参数说明

名称 必填 类型 说明

返回数据

看本页面右上角

调用实例

// 旧
<script src="https://api.vvhan.com/api/denglong"></script>
// 新
<script src="https://api.vvhan.com/api/denglong2"></script>

示例代码

<?php
header("Content-Type:text/json;charset=UTF-8"); date_default_timezone_set("PRC"); $url = "https://api.vvhan.com/api/denglong"; $data = file_get_contents($url); echo $data;
?>