91亚洲精华国内精华精华液_国产高清在线精品一区不卡_精品特级一级毛片免费观看_欧美日韩中文制服有码_亚洲精品无码你懂的网站369

<?PHP
/**圖靈機器人網(wǎng)站:http://www.tuling123.com
/**API端口體驗鏈接:http://www.tuling123.com/openapi/cloud/proexp.jsp
*/
 
$apiKey = "自己的appKey";
$apiURL = "http://www.tuling123.com/openapi/api?key=KEY&info=INFO";
 
// 設置報文頭, 構(gòu)建請求報文
header("Content-type: text/html; charset=utf-8");
$reqInfo = "講個笑話";
$url = str_replace("INFO", $reqInfo, str_replace("KEY", $apiKey, $apiURL));
 
/** 方法一、用file_get_contents 以get方式獲取內(nèi)容 */
     $res =file_get_contents($url);
     echo $res;
 
/** 方法二、使用curl庫,需要查看php.ini是否已經(jīng)打開了curl擴展 */
    $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;

 

穩(wěn)定

產(chǎn)品高可用性高并發(fā)

貼心

項目群及時溝通

專業(yè)

產(chǎn)品經(jīng)理1v1支持

快速

MVP模式小步快跑

承諾

我們選擇聲譽

堅持

10年專注高端品質(zhì)開發(fā)
  • 返回頂部