1949啦网--小小 痛苦,是因为能力和欲望不匹配造成的

PHP $this变量

<?php  class dog{  	var $name;  	function bark(){  //$this哪个调用就是哪个的意思,比如下面是$mydog 调用,	$this就是指$mydog  //$this 表示当前对向  		echo $this->name."wang";     	}  }  //用一个new来执行上面这套规则  $mydog = new dog();  $mydog->bark();  //哈出结果  wang  ?>

原文链接:https://www.qiquanji.com/post/7482.html

本站声明:网站内容来源于网络,如有侵权,请联系我们,我们将及时处理。

微信扫码关注

更新实时通知

作者:xialibing 分类:网页教程 浏览: