0

不确定这是 Wordnik API 问题还是我的 php 错误。这是我当前的代码:

require('./wordnik/Swagger.php');
require('./wordnik/WordsApi.php');

$myAPIKey = '00144cdc1140c4192780f08c3f608399234240dcb560d3e4b';
$client = new APIClient($myAPIKey, 'http://api.wordnik.com/v4');

$wordApi = new WordApi($client);
$input = new WordObject();
$input->includePartOfSpeech='noun';
$input->excludePartOfSpeech='affix,article,connjunction,preposition,abbreviation,suffix';
$input->hasDictionaryDef='true';
$input->minCorpusCount='10000';
$input->maxCorpusCount='null';
$input->minDictionaryCount='20';
$input->maxDictionaryCount=null;
$input->minLength='4';
$input->maxLength='20';

$random_word = $wordApi->getRandomWord($input); //THIS IS THE ERROR LINE
print $random_word->text;

这是我得到的错误:致命错误:调用未定义的方法 WordApi::getRandomWord()

任何帮助是极大的赞赏。错误发生在底部的那条线上,只是不知道为什么。谢谢你。

4

1 回答 1

0

getRandomWord()在 Word s Api(复数词)中定义。

  • 你有:WordApi
  • 你需要:WordAPI
于 2014-11-19T17:04:31.437 回答