今日課程:PHP開發-零基礎到精通瘋狂實戰教程(第二季)【韋瑋老師】php
課程接昨日課程ide
/*訪問成員方法*/ $b ->b();
一、對象和成員訪問函數
/*$this*/ class c{ var $name ;//常規屬性 private $heigh;//私有屬性 public $weigh;//公有屬性 static $age;//靜態屬性 function b(){//方法用函數聲明 echo "i can eat!<br>"; } function d(){ echo "My name is:".($this -> name).'<br>'; $this -> b(); } } $p = new c(); $p -> name ="da"; $p ->d();
/*構造方法和析構方法*/ class e{ var $name ;//常規屬性 private $heigh;//私有屬性 public $weigh;//公有屬性 static $age;//靜態屬性 function b(){//方法用函數聲明 echo "i can eat!<br>"; } function d(){ echo "My name is:".($this -> name).'<br>'; $this -> b(); } function __construct(){//構造方法 echo "i am gouzao<br>"; } function __destruct(){//析構方法 echo "i am xigou"; } } $q = new e(); //$q -> e(); $q -> d();