文件名称:有参数的建构元(Constructor)-思科路由交换
文件大小:3.02MB
文件格式:PPT
更新时间:2024-05-15 11:37:04
思科路由
有参数的建构元(Constructor) class car { var $color ; var $defcolor fonctioncar($defcolor) { $this->color = $defcolor; } function set_color($c){ $this->color=$c ; } function get_color(){ return $this->color ; } } $mycar = new car(“蓝色”); echo $mycar->get_color(); * *