参数名称 | 参数类型 | 必填 | 默认值 | 示例值 | 备注 |
---|---|---|---|---|---|
num | String | 是 | 5 | 五言 num=5 七言num=7 | |
type | String | 是 | 1 | type=1 藏头 type=2 藏尾 type=3 藏中 type=4 递增 type=5 递减 |
|
yayuntype | String | 是 | 1 | yayuntype=1 双句一压 yayuntype=2 双句押韵 yayuntype=3 一三四押 |
|
key | String | 是 | 易源接口 | 藏头诗中要包括的句子,最多八个字。 |
<?php header('content-type:text/html;charset=utf-8'); $ch = curl_init(); $url = 'https://api.liangmlk.cn?ak=xxxx&appid=2380&num=xxxx&type=xxxx&yayuntype=xxxx&key=xxxx'; curl_setopt($ch,CURLOPT_URL,$url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); $res = curl_exec($ch); curl_close($ch); return json_decode($res,true);