英汉语录 - API
经典英语范句

接口地址: https://api.oick.cn/api/yhyl

返回格式: String

请求方式: GET

请求示例: https://api.oick.cn/api/yhyl

请求参数说明:

名称 必填 类型 说明

返回参数说明:

名称 类型 说明
contentString返回英文内容
noteString返回中文内容

返回示例:

{
    "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": "我很相信运气,事实上我发现我越努力,我的运气越好。"
    }
}

错误码格式说明:

名称 类型 说明
codeString返回的状态码 201/200 失败/成功
msgString返回结果提示信息!

代码示例:

<?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代码结束-->