翻身的廢魚——論PHP從入門到放棄須要多久?18

今日課程:PHP開發-零基礎到精通瘋狂實戰教程(第二季)【韋瑋老師】php

課程接昨日課程ide

/*訪問成員方法*/
$b ->b();

一、對象和成員訪問函數

wKioL1mB3vKhI0cvAAFJMgNnIdI089.jpg-wh_50wKiom1mB31GzlRu0AAHt4Dj1BuU651.png-wh_50

/*$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();

wKiom1mB8NyCK6KyAAJEObarCbU907.png-wh_50

/*構造方法和析構方法*/
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();
相關文章
相關標籤/搜索