一.PHP代码分析
<?php class Student{ public $name; public $age; public $sex; function construct($name,$age,$sex){ $this->name=$name; $this->age=$age; $this->sex=$sex;} function get($proName) { return $this->$proName;} function set($proName,$proValue){ $this->$proName=$proValue;} function say(){ return "我叫:$this->name 年龄:$this->age 性别:$this->sex";} function destruct(){ echo "欢迎使用PHP,谢谢";}} $A = new Student("jack",19,"man"); echo $A->name.""; echo $A->say(); ?>二.随机函数小程序
运行结果如下