接口地址

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;
?>