介绍图灵机器人php API
2020-12-13 05:46
标签:style http color 使用 os io 数据 cti
将返回结果使用 json_decode() 返回json 数据$data,这样可以通过$data->text 来输出笑话。 介绍图灵机器人php API,搜素材,soscw.com 介绍图灵机器人php API 标签:style http color 使用 os io 数据 cti 原文地址:http://blog.csdn.net/fujiafeihudui/article/details/38324241
$apiURL = "http://www.tuling123.com/openapi/api?key=KEY&info=INFO";
header("Content-type: text/html; charset=utf-8");
$reqInfo = "讲个笑话";
$url = str_replace("INFO", $reqInfo, str_replace("KEY", $apiKey, $apiURL));
$res =file_get_contents($url);
echo $res;
$ch = curl_init();
$timeout = 5; curl_setopt ($ch, CURLOPT_URL, $url); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$file_contents = curl_exec($ch);
curl_close($ch);
echo $file_contents;
下一篇:基于python的图像傅里叶处理