PHP学习笔记二十三【This】

<?php
  Class Person
  {
  
     function test1()
     {
      $this->test2();//类里面的方法互相调用要加$this
     }
    protected function test2()
     {
       echo "test2";
     }
  }

?>

 

posted @ 2014-10-26 21:48  编程猴子  阅读(107)  评论(0编辑  收藏  举报