欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-04-19 08:08:03
...
       $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));

回复内容:

       $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));

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

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

相关标签: php api