稳定、快速、免费的 API 接口服务
共收录了 21 个接口 ·
累计调用 67,134 次
经典英语范句
接口地址: https://api.oick.cn/api/yhyl
返回格式: String
请求方式: GET
请求示例: https://api.oick.cn/api/yhyl
请求参数说明:
名称 | 必填 | 类型 | 说明 |
---|---|---|---|
无 | 否 | 无 | 无 |
返回参数说明:
名称 | 类型 | 说明 |
---|---|---|
content | String | 返回英文内容 |
note | String | 返回中文内容 |
返回示例:
{ "code": 200, "msg": "success", "data": { "content": "I am a great believer in luck, and I find that the harder I work, the more I have of it.", "note": "我很相信运气,事实上我发现我越努力,我的运气越好。" } }
错误码格式说明:
名称 | 类型 | 说明 |
---|---|---|
code | String | 返回的状态码 201/200 失败/成功 |
msg | String | 返回结果提示信息! |
代码示例:
<?php $str = file_get_contents('https://api.oick.cn/api/yhyl'); $data = json_decode($str); ?> <!--HTML代码--> <ul> <li><?php echo $data;?></li> </ul> 最后,假设写在了api.php,访问api.php即可 <!--HTML代码结束-->