为foreach()提供的参数无效,无法找到原因

时间:2011-07-13 09:27:36

标签: php foreach

我是初级级别的php程序员。我试图使用MVC,但我甚至无法通过这个测试。

问题:警告:在第15行的httpdocs / data / serieDAO.php中为foreach()提供的参数无效

任何人都可以告诉我导致这个问题的原因吗?

代码(对不起,如果很长):

的index.php

<?php 
ini_set('display_errors', 1);
// main controller
require_once ("business/serieservice.php");
$service = new SerieService();
$serielijst = $service->toonAlleSeries();
include("test/test1.php");
?>

/business/serieservice.php

<?php
require_once("data/serieDAO.php");
class SerieService{

    public function toonAlleSeries(){
        $serieDAO = new SerieDAO();
        $lijst = $serieDAO->displayList();
        return $lijst;
    }
}
?>

/data/serieDAO.php

 <?php
require_once("entities/series.class.php");

class SerieDAO{

    // public function __construct(){
        // $dbh = new PDO("mysql:host=localhost;dbname=tvseasons", "seasons", "bompa");
    // }

    public function displayList(){
        $list = array();
        $dbh = new PDO("mysql:host=localhost;dbname=tvseasons", "seasons", "bompa");
        $sql = "select id, title, desc, url, genre, trailer from Series";
        $resultSet = $dbh->query($sql);
        foreach ($resultSet as $row){
            $serie = new Series($row["id"], $row["title"],$row["desc"], $row["url"], $row["genre"], $row["trailer"]);
            array_push($list, $serie);
        }
        $dbh = null;        
        return $list;
    }


}
?>

/entities/series.class.php

<?
//class met getters en setters van series entity
class Series{
  private $id;
  private $title;
  private $desc; //description
  private $url;
  private $genre;
  private $trailer;

  /* Try to figure out how to determine the $id. Cannot be set obviosly but get should be possible */

  //setters
  function setTitle ($title){
    $this->title = $title;
  }
  function setDesc($desc){
    $this->desc = $desc;
  }
  function setUrl($url){
    $this->url = $url;
  }
  function setGenre($genre){
    $this->genre = $genre;
  }
  function setTrailer($trailer){
    $this->trailer = $trailer;
  }

  //getters
  function getTitle(){
    return $this->title;
  }
  function getDesc(){
    return $this->desc;
  }
    function getUrl(){
    return $this->url;
  }
    function getGenre(){
    return $this->genre;
  }
    function getTrailer(){
    return $this->trailer;
  }
}
?>

/test/test1.php

<html>
<head>
<title>Test1 lijst series</title>
</head>
<body>
<h1>Een lijst van alle series</h1>
<ul>
<?php
foreach($serielijst as $serie){
 print ("<li>bla bla</li>");
}
?>
</ul>
</body>
</html>

编辑:我知道foreach里面的代码还没有工作。但我已经发现这不是原因。

7 个答案:

答案 0 :(得分:6)

您的查询无法返回包含结果集的数组,因为您正在为其中一个表列使用保留字(desc)。

变化:

$sql = "select id, title, desc, url, genre, trailer from Series";

为:

$sql = "select id, title, `desc`, url, genre, trailer from Series";

答案 1 :(得分:1)

错误通常意味着foreach的参数不是数组或空数组。您可以通过var_dump($resultSet)尝试查看$ resultSet的内容。我猜你得到了MySQL的空回复,这导致了这个错误。要验证这一点,您应该尝试手动运行查询。

答案 2 :(得分:0)

请var_dump $ result设置变量并查看它是否为数组。 Foreach方法只接受数组,因此,如果它提供了其他任何内容,它将引发错误。

答案 3 :(得分:0)

似乎连接或查询失败。请尝试以下操作以查看错误:

if ($resultSet) {
        foreach ($resultSet as $row){
            $serie = new Series($row["id"], $row["title"],$row["desc"], $row["url"], $row["genre"], $row["trailer"]);
            array_push($list, $serie);
        }
else {
    var_dump($dbh->errorInfo());
}

答案 4 :(得分:0)

可能是$ resultSet不是数组。 它可能会发生,因为有时查询不会获取数据。

你应该在foreach循环之前添加这个条件

if(is_array($ resultSet)&amp;&amp; count($ resultSet)&gt; 0){

foreach($resultSet as $row){
}

}

答案 5 :(得分:0)

看起来你没有在/data/serieDAO.php中获取数据,如下所示:

     $resultSet = $dbh->query($sql);
     $rows = $resultSet->fetchAll(PDO::FETCH_ASSOC); // this looks missing in your code
    foreach($rows as $key => $value) {
        $data_array[$key] = $value;// replace with your "serie" stuffs
    }

答案 6 :(得分:0)

 $dbh = new PDO("mysql:host=localhost;dbname=tvseasons", "seasons", "bompa"); 
 $sql = "select id, title, desc, url, genre, trailer from Series";

检查这些行,您的连接可能有错误,或检查您的查询哪个与您的表字段匹配。手动检查,是否正在执行选择查询。