好吧我还在学习PHP中的功能,但是这段特殊的代码让我感到困惑。对于维基百科查询段,信用转到http://www.barattalo.it/2010/08/29/php-bot-to-get-wikipedia-definitions/。我认为这看起来很有趣,我正在尝试使用提供的代码来回显函数中的数据。这就是我所拥有的:
<?php
function wikidefinition($s) {
$url = "http://wikipedia.org/w/api.php?action=opensearch&search=".urlencode($s)."&format=xml&limit=1";
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_HTTPGET, TRUE);
curl_setopt($ch, CURLOPT_POST, FALSE);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_NOBODY, FALSE);
curl_setopt($ch, CURLOPT_VERBOSE, FALSE);
curl_setopt($ch, CURLOPT_REFERER, "");
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
curl_setopt($ch, CURLOPT_MAXREDIRS, 4);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 6.1; he; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8");
$page = curl_exec($ch);
$xml = simplexml_load_string($page);
if((string)$xml->Section->Item->Description) {
return array((string)$xml->Section->Item->Text, (string)$xml->Section->Item->Description, (string)$xml->Section->Item->Url);
} else {
return "blank";
}
}
$define = wikidefinition("test");
echo $define;
?>
然而这只是回声“阵列” 我知道代码转到if / else语句,因为如果你改变了“$ define = wikidefinition(”test“)中的输入;”对于某些随机键组合,例如“qoigenqnge”,它将回显“空白”我无法弄清楚为什么它只回显“数组”而不是数组内的数据。可能是一些愚蠢的东西,但我已经在数组上阅读了一段时间而无法找到任何信息。任何帮助都将非常感谢!
答案 0 :(得分:5)
你试过了吗?
print_r($define);
而不是echo
?