首頁 > 後端開發 > php教程 > php调用百度翻译api后,调用成功后为什么结果为空?

php调用百度翻译api后,调用成功后为什么结果为空?

WBOY
發布: 2016-06-06 20:25:38
原創
1817 人瀏覽過

<code>       $ch = curl_init();
             //$keyword='hello';
    $url = 'http://apis.baidu.com/apistore/tranlateservice/dictionary?query=hello&from=en&to=zh';
    $header = array(
        'apikey: 这里是我的apikey,我没有写',
    );
    // 添加apikey到header
    curl_setopt($ch, CURLOPT_HTTPHEADER  , $header);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    // 执行HTTP请求
    curl_setopt($ch , CURLOPT_URL , $url);
    $res = curl_exec($ch);
    curl_close($ch);
    var_dump(json_decode($res));</code>
登入後複製
登入後複製

回复内容:

<code>       $ch = curl_init();
             //$keyword='hello';
    $url = 'http://apis.baidu.com/apistore/tranlateservice/dictionary?query=hello&from=en&to=zh';
    $header = array(
        'apikey: 这里是我的apikey,我没有写',
    );
    // 添加apikey到header
    curl_setopt($ch, CURLOPT_HTTPHEADER  , $header);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    // 执行HTTP请求
    curl_setopt($ch , CURLOPT_URL , $url);
    $res = curl_exec($ch);
    curl_close($ch);
    var_dump(json_decode($res));</code>
登入後複製
登入後複製

因为百度返回给你的结果就是空, 下图为 百度百度提供的调试工具 得到的结果, 和你提供的代码所获得到的结果是一样的.

php调用百度翻译api后,调用成功后为什么结果为空?

<code><?php $ch = curl_init();
    $url = 'http://apis.baidu.com/baidu_openkg/zici_kg/zici_kg';
    $header = array(
        'Content-Type:application/x-www-form-urlencoded',
        'apikey: a32f233654d52b869c0e96dd6b3e2db7',
    );
    $data = '{"query": "喜欢近义词", "resource": "zici"}';
    // 添加apikey到header
    curl_setopt($ch, CURLOPT_HTTPHEADER  , $header);
    // 添加参数
    curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    // 执行HTTP请求
    curl_setopt($ch , CURLOPT_URL , $url);
    $res = curl_exec($ch);

    $var = json_decode($res, true);
    print_r($var);
?></code>
登入後複製
相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板