php面向对象Object

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php面向对象Object相关的知识,希望对你有一定的参考价值。

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(父,自);

以上是关于php面向对象Object的主要内容,如果未能解决你的问题,请参考以下文章

PHP面向对象

php面向对象之一

php面向对象详解

php面向对象编程入门

php面向对象学习

php面向对象