接口地址
https://api.vvhan.com/api/60s
返回格式
图片
请求方式:
GET
请求示例(图片)
https://api.vvhan.com/api/60s
请求示例(JSON)
https://api.vvhan.com/api/60s?type=json
参数说明
名称 | 必填 | 类型 | 说明 |
---|---|---|---|
type | 否 | string | 是否输出JSON |
返回数据
图片格式返回
调用实例
自行调用
示例代码
<?php
header("Content-Type:text/json;charset=UTF-8"); date_default_timezone_set("PRC"); $xx = $_GET["type"]; $url = "https://api.vvhan.com/api/60s?type=" . $xx; $data = file_get_contents($url); echo $data;