摘要:
class Fenbi{ public $length;//属于对象的(普通成员) public static $color;//属于类的,静态成员 //返回数据库的连接对象 public static function Lianjie() { //$this->length;//静态方法不能调用普 阅读全文
摘要:
继承 子类可以继承父类的一切特点 单继承class Ren{ public $name; public $sex; public $yuyan; function Say() { echo $this->name."正在说话"; }}//美国人的子类class America extends Ren 阅读全文