PHP警告:为foreach()提供了无效的参数

为什么我得到这个PHP警告?

foreach()提供的参数无效

这是我的代码:

// look for text file for this keyword if (empty($site["textdirectory"])) { $site["textdirectory"] = "text"; } if (file_exists(ROOT_DIR.$site["textdirectory"].'/'.urlencode($q).'.txt')) { $keywordtext = file_get_contents(ROOT_DIR.$site["textdirectory"].'/'.urlencode($q).'.txt'); } else { $keywordtext = null; } $keywordsXML = getEbayKeywords($q); foreach($keywordsXML->PopularSearchResult as $item) { $topicsString = $item->AlternativeSearches; $relatedString = $item->RelatedSearches; if (!empty($topicsString)) { $topics = split(";",$topicsString); } if (!empty($relatedString)) { $related = split(";",$relatedString); } } $node = array(); $node['keywords'] = $q; 

2

 $xml = ebay_rss($node); $ebayItems = array(); $totalItems = count($xml->channel->item); $totalPages = $totalItems / $pageSize; $i = 0; foreach ($xml->channel->item as $item) { $ebayRss = $item->children('http://www.ebay.com/marketplace/search/v1/services'); if ($i>=($pageSize*($page-1)) && $i<($pageSize*$page)) { $newItem = array(); $newItem['title'] = $item->title; $newItem['link'] = buyLink($item->link, $q); $newItem['image'] = ebay_stripImage($item->description); $newItem['currentbid'] = ebay_convertPrice($item->description); $newItem['bidcount'] = $ebayRss->BidCount; $newItem['endtime'] = ebay_convertTime($ebayRss->ListingEndTime); $newItem['type'] = $ebayRss->ListingType; if (!empty($ebayRss->BuyItNowPrice)) { $newItem['bin'] = ebay_convertPrice($item->description); } array_push($ebayItems, $newItem); } $i++; } $pageNumbers = array(); for ($i=1; $i<=$totalPages; $i++) { array_push($pageNumbers, $i); } 

3

 // get user guides $guidesXML = getEbayGuides($q); $guides = array(); foreach ($guidesXML->guide as $guideXML) { $guide = array(); $guide['url'] = makeguideLink($guideXML->url, $q); $guide['title'] = $guideXML->title; $guide['desc'] = $guideXML->desc; array_push($guides,$guide); } 

什么导致这个警告?

你应该通过使用is_array函数来检查你传递给foreach是一个数组

如果您不确定这将是一个数组,您可以随时使用以下PHP示例代码进行检查:

 if (is_array($variable)) { foreach ($variable as $item) { //do something } } 

这意味着你正在做一个不是数组的东西。

检查所有的foreach语句,并查看之前的事情,以确保它实际上是一个数组。 使用var_dump来转储它。

然后修复它不是数组的地方。

如何重现此错误:

 <?php $skipper = "abcd"; foreach ($skipper as $item){ //the warning happens on this line. print "ok"; } ?> 

确保$skipper是一个数组。

因为,无论错误发生在哪一行(你没有告诉我们这是什么),你传递的东西是不是数组。

看看你传递给foreach ,确定它是什么(与var_export ),找出为什么它不是一个数组…并修复它。

基本的,基本的debugging。