我正在尝试创建一个字典小部件,在其中实现 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/。任何建议将不胜感激。提前致谢。