<?php class Car { var $color; function Car($color="red") { $this->color = $color; } function what_color() { return $this->color; } } function print_vars($obj) { foreach (get_object_vars($obj) as $prop => $val) { echo " $prop = $val"; } } // instantiate one object $herbie = new Car("white"); $herbie1 = new Car("grey"); // show herbie properties echo "herbie: Properties"; print_vars($herbie); echo ' 方法:'; echo $herbie->what_color(); //print_vars($herbie1); ?>
标签:what,vars,color,herbie,echo,学习,汽车,print,php From: https://www.cnblogs.com/hnqyliu/p/17326185.html