반응형 php trait1 PHP Trait Trait 는 PHP 5.4 부터 추가된 기능이다Trait는 어떤 특정 기능의 코드를 재사용 가능하게 해 준다.Trait 로 상속없이 특정 기능을 추가할 수 있게 된다. Trait 는 클래스에 추가할 Method 들의 집합이다 trait teach_something { public function say($words) { echo $words; }}class Teacher { use teach_something;}class Manager { use teach_something;}$teacher = new Teacher;$teacher->say("study"); 2016. 10. 7. 이전 1 다음 반응형