__construct() 공개 메소드

public __construct ( $breed )
예제 #1
0
파일: rex.php 프로젝트: maminu/JSPHP1
 public function __construct()
 {
     parent::__construct();
     return $this->rexResponse = "Rex's Response: ";
 }
예제 #2
0
 function __construct($breed, $size = 0)
 {
     echo __METHOD__, $breed, $size;
     parent::__construct($breed);
 }
예제 #3
0
 public function __construct($a, $n, $ec)
 {
     parent::__construct($a, $n);
     $this->eyeColor = $ec;
 }
예제 #4
0
파일: fido3.php 프로젝트: maminu/JSPHP1
 public function __construct()
 {
     parent::__construct();
     return $this->fidoResponse = "Fido's Response: ";
 }