我正在創建一個需要向我提供MySQL-表「內容」中的所有數據的類。對象集合
我想將我的數據作爲對象返回。 到目前爲止,我設法得到一個對象返回,但我想要返回一個對象集合與數據庫中的所有行。
<?
class ContentItem {
public $id;
public $title;
public $subtitle;
public $conent;
public $intro_length;
public $active;
public $start_date;
public $end_date;
public $views;
static function getContentItems() {
$query = "SELECT * FROM content";
$result = mysql_query($query)or die(mysql_error());
$item = new ContentItem();
while ($data = mysql_fetch_object($result)) {
$item = $data;
}
return $item;
}
}