美文网首页
php中的初始化方法 __construct

php中的初始化方法 __construct

作者: zlchen | 来源:发表于2020-08-21 07:46 被阅读0次
    <?php
    
      class Test
      {
         public function __construct($sex,$age){  #初始化方法
            $this->sex = $sex;
            $this->age = $age;
         }
      }
      $test = new Test('nan',26);
    
    ?>
    

    相关文章

      网友评论

          本文标题:php中的初始化方法 __construct

          本文链接:https://www.haomeiwen.com/subject/brmsjktx.html