我是PHP和mySql的新手,但我正在试图弄清楚如何从表中获取所有项目。在我的项目处理程序类中,我正在做
static function getAllItems(){
$items = array();
$db = new Database();
$result = $db->query("SELECT * FROM items");
while($row = $result->fetch_assoc()){
$items[] = $row;
}
return $items;
}
然后在客户端我这样做是为了迭代返回的项目并显示它们,但是一直出错
“致命错误:在非对象”
上调用成员函数getTitle()
我做错了什么?
<div class="table-responsive">
<?php
$allItems = ItemHandler::getAllItems();
if(empty($allItems)){
echo '<p class="lead text-center">No listings in this category yet.</p>';
} else {
echo '<table class="table">
<tr>
<th>Image</th>
<th>Item Name</th>
<th>Quantity</th>
<th>Description</th>
<th>Seller</th>
<th>Price</th>
<th>Purchase</th>
</tr>';
foreach($allItems as $item){
echo "<tr>
<td>blank</td>
<td>{$item->getTitle()}</td>
<td>1</td>
<td>{$item->getDescription()}</td>
<td>test seller</td>
<td>{$item->getPrice()}</td>
<td><a href='#'><button type='button' class='btn btn-primary'>Buy</button></a></td>
</tr>";
}
echo '</table>';
}
?>
</div>
我不相信我的Item类中的任何函数都存在问题。我相信这是我用get all items创建项目的方式。无论如何,这是代码。项目包含在我的客户端文件中。
class Item {
private $id;
private $title;
private $description;
private $imgPath;
private $category;
private $keywords;
private $postedTimestamp;
private $updatedTimestamp;
private $price;
private $published;
function __construct($id, $title, $description, $imgPath, $category, $keywords, $postedTS, $updatedTS, $price, $published){
$this->setId($id);
$this->setTitle($title);
$this->setDescription($description);
$this->setImgPath($imgPath);
$this->setCategory($category);
$this->setKeywords($keywords);
$this->setPostedTimestamp($postedTS);
$this->setUpdatedTimestamp($updatedTS);
$this->setPrice($price);
$this->setPublished($published);
}
public function getTitle()
{
return $this->title;
}
public function setTitle($title)
{
$this->title = $title;
return $this;
}
//other getters/setters of same format
当我vardumpvar_dump($allItems[0]);
时,会返回此信息,这是正确的......
array(size = 9)'id'=&gt;字符串'1'(长度= 1)'标题'=&gt;串 '测试项目'(长度= 9)'描述'=&gt;字符串'测试描述' (长度= 16)'imgPath'=&gt;串 '图像/ f141705f42bc438e1fa13ce21a04b67cc4568996-test1.gif' (长度= 57)'价格'=&gt;字符串'45'(长度= 2)'postedTS'=&gt;串 '2014-03-19 01:13:34'(长度= 19)'updatedTS'=&gt;字符串'2014-04-16 21:39:19'(长度= 19)'已发布'=&gt;字符串'1'(长度= 1)
'category'=&gt;字符串'1'(长度= 1)
答案 0 :(得分:1)
根据您提供的var_dump
结果:
array(size = 9)'id'=&gt;字符串'1'(长度= 1)'标题'=&gt;字符串'测试 item'(length = 9)'description'=&gt;字符串'测试描述' (长度= 16)'imgPath'=&gt;串 '图像/ f141705f42bc438e1fa13ce21a04b67cc4568996-test1.gif' (长度= 57)'价格'=&gt;字符串'45'(长度= 2)'postedTS'=&gt;串 '2014-03-19 01:13:34'(长度= 19)'updatedTS'=&gt;字符串'2014-04-16 21:39:19'(长度= 19)'已发布'=&gt;字符串'1'(长度= 1)'类别' =&GT;字符串'1'(长度= 1)
每个$item
都是一个关联数组,每个项目中都有title
和其他字段,因此可以使用以下方式访问它:
$item['title'];
$item['description'];
等等。
答案 1 :(得分:1)
使用$item['title']
代替$item->getTitle().
答案 2 :(得分:0)
请尝试修改代码。
<?php
$con = mysql_connect("localhost", "root", "mypass") or
die("Could not connect: " . mysql_error());
mysql_select_db("tutorials");
$result = mysql_query("select * from tutorials");
echo "<table border='1' style='border-collapse: collapse'>";
echo "<th>Name of theTutorial</th><th>Pages</th><th>Examples</th><th>Author</th>";
while ($row = mysql_fetch_array($result))
{
echo"<tr><td>".$row['name']."</td><td>".$row['no_of_pages']."</td><td>".$row['no_of_examples']."</td><td>".$row['author']."</td></tr>";<br>}<br>echo "</table>";<br>mysql_close($con);
?>
请根据需要更改您的代码。我希望你能100%解决
答案 3 :(得分:0)
尝试创建一个包含表模型的类,然后初始化setter和getter,之后就可以使用fnctions了,即
class model{
private $title;
private $description;
private $price;
//...
public function getTitle(){
return $title;
}
//..
}
答案 4 :(得分:0)
您需要创建所需对象的实例。 (项目)
您的代码当前将所有提取的行推送到数组中。
您需要处理这些行。
static function getAllItems(){
$items = array();
$db = new Database();
$result = $db->query("SELECT * FROM items");
while($row = $result->fetch_assoc()){
$items[] = new Item($row["id"], $row["title"], $row["description"], $row["imgPath"], $row["category"], $row["keywords"], $row["postedTS"], $row["updatedTS"], $row["price"], $row["published"]);
}
return $items;
}
我建议将PDO与PHP(http://wiki.hashphp.org/PDO_Tutorial_for_MySQL_Developers)一起使用,因为它可以为您执行所有这些“注入”(如果您想为多个数据库构建应用程序,那就更好):
$yourstatement->fetchObject("Item")