1

我已经注册了同义词 API.. 请参阅此页面上的详细信息

我无法在我的 php 代码中实现这一点。

如果我将链接复制并粘贴到网络浏览器中,我可以看到结果没有问题。

而不是手动输入单词,我希望在链接中有一个带有相关单词的变量,$variable_with_word_stored如下所示。

    http://words.bighugelabs.com/api/2/xxxxxxxx/$variable_with_word_stored/php 

    //format could be php (I would unserialize)..or json..I could decode it?

有什么想法吗?谢谢。

4

2 回答 2

0

try it like this, maybe that you dont need curl:

$key = "xxxxxxxx";
$word = "love";

echo file_get_contents("http://words.bighugelabs.com/api/2/$key/$word/php");
于 2013-07-17T19:10:17.817 回答
0

听起来您的意思是您想要调用该网页的结果并将其存储在变量中。您应该做的是在代码中向该页面发送一个 http get 请求。

使用 curl 和 php 查看,您可以向您请求的 url 发送一个 http 请求,捕获结果并通过解析它json_decode

http://php.net/manual/en/curl.examples-basic.php

于 2013-07-17T19:08:29.263 回答