翻身的廢魚——論PHP從入門到放棄需要多久?18
阿新 • • 發佈:2017-08-03
php初學者
今日課程:PHP開發-零基礎到精通瘋狂實戰教程(第二季)【韋瑋老師】
課程接昨日課程
/*訪問成員方法*/ $b ->b();
1、對象和成員訪問
/*$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();
本文出自 “一條大大大大廢魚” 博客,謝絕轉載!
翻身的廢魚——論PHP從入門到放棄需要多久?18