码迷,mamicode.com
首页 > Web开发 > 详细

php面向对象Object

时间:2016-10-30 11:40:17      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:extend   设置   object   构造函数   ted   font   面向   prot   struct   

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

标签:extend   设置   object   构造函数   ted   font   面向   prot   struct   

原文地址:http://www.cnblogs.com/ikongXY/p/6012601.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!