Home  >  Article  >  Backend Development  >  深入php self与$this的详解_php技巧

深入php self与$this的详解_php技巧

WBOY
WBOYOriginal
2016-05-17 09:02:41917browse

先谈parent与self:

复制代码 代码如下:

/*
 * Created by YinYiNiao
 */
 class A{
  function __construct(){
   echo "基类A的构造方法
";
  }
 }
 class B extends A{
  function __construct(){
   parent::__construct();
   echo "子类B的构造方法
";
   self::myFun();
  }
  function myfun(){
   echo "一个普通方法myFun()
";
  }
 }
$obj=new A();
$obj=new B();
?>

self与$this的功能极其相似,但二者又不相同。$this不能引用静态成员和常量。self更像类本事,而$this更像是实例本身。
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn