1.创建类
class 类名{
private 私有变量 只能本类的内部使用
protected 受保护的变量 本类和子类的内部
public 公开的变量 都可以使用
一般属性都设为私有
一般函数都是公开
}
2.引用类
$p=new 类名;
$p->方法名
3.通过外部设置私有变量
通过内部设置函数访问
4.构造函数
function __construct($变量1,$变量2){
$this->变量1=$变量1;
$this->变量2=$变量2;
}
5.继承
Student是Person的子类
class Student extend Person{
private $自己的变量;
function __construct($父类的变量,$自己的变量){
//调用父类的元素
parent::__construct($父类的变量);
$this->自己的变量=$自己的变量;
}
自己函数
}
$s=new Student(父,自);
时间: 2024-11-05 13:44:11