2010-07-21 83 views
-3

如何從Object中獲取信息?php,來自對象的數據

$cars = new Cars($car_color, $car_id, $car_speed); 
CAR_class::cars($cars, $car_speed); 

感謝

+2

請更精確 – 2010-07-21 13:47:51

+0

您的問題與其標題之間的關係是什麼? – greg0ire 2010-07-21 13:51:09

+0

*(參考)* [關於類和對象的PHP手冊](http://de2.php.net/manual/en/language.oop5.php) – Gordon 2010-07-21 13:53:27

回答

3

get_object_vars()是winrar的:

public function getColor() { 

    return $this->color; 
} 

然後使用你喜歡的東西會調用該函數。 :-D

1

假設你剛纔的意思是訪問$車對象的變量...

你應該有一個返回對象的變量,你的車類中某種吸氣功能。例如:

$cars->getColor();