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

【php学习-4】

时间:2018-08-26 16:39:43      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:created   func   常量   int   程序   private   new   ++   属性   

var_1=11; print $var1->var_1.$var2->var_1; ?> print_Color(); ?> y=self::$x; # code... } } $z=new myClass(); print $z->y; $w=new myClass(); print $w->y; /* class staticMyclass{ static $ansewer=0; static $word=0; function method() { print self::$word; # code... } } $x=new staticMyclass(); $x->method; staticMyclass::$ansewer++; //访问静态方法属性 print staticMyclass::$ansewer; */ /* public #公有成员(函数,变量) private #私有成员 protected #受保护成员 class Dbclass{ private $x; //只能在内部调用 function createDbConnection($x) { $x=$this->$x; protected $y=$x;//包括继承类可以调用 # code... } public setDbConnection(){ //整个程序可以调用 return $this->x; } } //继承类 class DbNodeClass extends Dbclass{ $y="hello world" */ /* class whiteClass{ function __destruct(){ //析构函数 print "this is a white function"; } } $x=whiteClass(); $x=NULL; */ ?> $by=$by; # code... } function getTraveal() { return $this->$by; # code... } private $by; } $bike=new traveal("mile"); print $bike->getTraveal(); */ ?>

【php学习-4】

标签:created   func   常量   int   程序   private   new   ++   属性   

原文地址:https://www.cnblogs.com/activecode/p/9537590.html

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