首页 > 代码库 > 翻身的废鱼——论PHP从入门到放弃需要多久?18

翻身的废鱼——论PHP从入门到放弃需要多久?18

今日课程: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