-
[객체지향PHP]3.생성자서버/PHP 2020. 11. 5. 02:08
class Person{ public $name; public $eyeColor; public $age; public function __construct($name,$eyeColor,$age){ $this->name=$name; $this->eyeColor=$eyeColor; $this->age=$age; } }
__construct
'서버 > PHP' 카테고리의 다른 글
[객체지향PHP]6.include (0) 2020.11.05 [객체지향PHP]5.Static ::(Scope Resolution Operator) (0) 2020.11.05 [객체지향PHP]4.객체 지우기 (0) 2020.11.05 [객체지향PHP]2.메서드와 상속 (0) 2020.11.05 [객체지향 PHP]1.클래스 생성 (0) 2020.11.05