0

我正在尝试创建一个字典小部件,在其中实现 Dictionary.com 的 API。我创建了一个包含文本框和提交按钮的 html 表单。我正在尝试编写模拟字典搜索的代码。代码不起作用,我不知道我做错了什么。

这是我正在使用的 PHP 代码:

    <?php

  $vid = "<I ENTER THE VID HERE AS A STRING>";

  $url = "http://api-pub.dictionary.com/v001?vid=" . $vid . "&q=" . $_POST['dictionary_search'] . "&type=define&site=dictionary";

  // initialize curl + store in a variable
  $ch = curl_init();

  // configure cURL
  curl_setopt($ch, CURLOPT_URL, $url);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

  $result = curl_exec($ch);

  echo $result;
?>

我启用了 php-curl。我使用的 API 可以在这里找到http://developer.dictionary.com/。任何建议将不胜感激。提前致谢。

4

1 回答 1

0

方法一

    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL,'http://example.com/path/here');
    curl_setopt($ch, CURLOPT_FAILONERROR,1);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION,1);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
    curl_setopt($ch, CURLOPT_TIMEOUT, 15);
    $retValue = curl_exec($ch);          
    curl_close($ch);

$oXML = new SimpleXMLElement($retValue);

foreach($oXML->entry as $oEntry){
    echo $oEntry->title . "\n";
}

方法二

$json_url  ='https://exampleurl';

// Initializing curl
$ch = curl_init( $json_url );

// Configuring curl options
$options = array(
CURLOPT_RETURNTRANSFER => true
);

// Setting curl options
curl_setopt_array( $ch, $options );

// Getting results
$results =  curl_exec($ch); // Getting jSON result string

$xml = simplexml_load_string($results);
print_r($results);
于 2013-02-07T06:20:28.670 回答