我是從數據的基礎上採用面向對象的獲取數據,這讓我在陣列數據作爲如何使用oop從mysql獲取數據..?
array(23) {
[0]=> array(6) {
[0]=> string(1) "6"
["id"]=> string(1) "6"
[1]=> string(17) "Office Management"
["Name"]=> string(17) "Office Management"
[2]=> string(1) "3"
["top_parent_id"]=> string(1) "3"
}
}
當我嘗試GE數據從陣列它提供了錯誤的
「注意:試圖獲取屬性非對象在C:\ XAMPP \ htdocs中\接力\ test.php的第12" 行
這裏是我的代碼
require_once('class.php');
$myClassObj = new db();
//$myClassObj->db();
$data = $myClassObj->select("parent_menu");
//var_dump($data);
foreach($data as $list)
{
echo $list->{'0'}->id."<br>";
}
是什麼的print_r的'輸出($列表)' – Noman