간단히 말하면 PHP에서는 특성 키워드를 사용하여 클래스가 기본 클래스의 속성과 메서드를 통합하고 싶지만 다른 기본 클래스의 메서드도 갖고 싶어하는 문제를 해결합니다. , 특성은 일반적으로 사용과 함께 사용됩니다.
이 글에서 소개한 PHP의 특성 사용법을 살펴보겠습니다
<?php trait Drive { public $carName = 'trait'; public function driving() { echo "driving {$this->carName}\n"; } } class Person { public function eat() { echo "eat\n"; } } class Student extends Person { use Drive; public function study() { echo "study\n"; } } $student = new Student(); $student->study(); $student->eat(); $student->driving(); ?>
출력 결과는 다음과 같습니다.
study eat driving trait
위의 예에서, Student 클래스는 Person을 상속하고 eat 메소드를 가지며 Drive를 결합하여 운전 메소드와 carName 속성을 갖습니다.
Trait, 기본 클래스, 이 클래스에 같은 이름을 가진 속성이나 메서드가 있으면 결국 어떤 것이 유지되나요?<?php trait Drive { public function hello() { echo "hello drive\n"; } public function driving() { echo "driving from drive\n"; } } class Person { public function hello() { echo "hello person\n"; } public function driving() { echo "driving from person\n"; } } class Student extends Person { use Drive; public function hello() { echo "hello student\n"; } } $student = new Student(); $student->hello(); $student->driving(); ?>
hello student driving from drive
use Trait1, Trait2;
<?php trait Trait1 { public function hello() { echo "Trait1::hello\n"; } public function hi() { echo "Trait1::hi\n"; } } trait Trait2 { public function hello() { echo "Trait2::hello\n"; } public function hi() { echo "Trait2::hi\n"; } } class Class1 { use Trait1, Trait2; } ?>
PHP Fatal error: Trait method hello has not been applied, because there are collisions with other trait methods on Class1 in ~/php54/trait_3.php on line 20
operator를 사용하여 충돌을 해결합니다. 대신에 메소드를 사용하는 것입니다. 메소드에 별칭을 제공하는 것입니다. 구체적인 사용법은 코드를 참조하세요.
<?php trait Trait1 { public function hello() { echo "Trait1::hello\n"; } public function hi() { echo "Trait1::hi\n"; } } trait Trait2 { public function hello() { echo "Trait2::hello\n"; } public function hi() { echo "Trait2::hi\n"; } } class Class1 { use Trait1, Trait2 { Trait2::hello insteadof Trait1; Trait1::hi insteadof Trait2; } } class Class2 { use Trait1, Trait2 { Trait2::hello insteadof Trait1; Trait1::hi insteadof Trait2; Trait2::hi as hei; Trait1::hello as hehe; } } $Obj1 = new Class1(); $Obj1->hello(); $Obj1->hi(); echo "\n"; $Obj2 = new Class2(); $Obj2->hello(); $Obj2->hi(); $Obj2->hei(); $Obj2->hehe(); ?>
Trait2::hello Trait1::hi Trait2::hello Trait1::hi Trait2::hi Trait1::hello
<?php trait Hello { public function sayHello() { echo "Hello\n"; } } trait World { use Hello; public function sayWorld() { echo "World\n"; } abstract public function getWorld(); public function inc() { static $c = 0; $c = $c + 1; echo "$c\n"; } public static function doSomething() { echo "Doing something\n"; } } class HelloWorld { use World; public function getWorld() { return 'get World'; } } $Obj = new HelloWorld(); $Obj->sayHello(); $Obj->sayWorld(); echo $Obj->getWorld() . "\n"; HelloWorld::doSomething(); $Obj->inc(); $Obj->inc(); ?>
Hello World get World Doing something 1 2
위 내용은 최신 PHP 특성을 사용하는 방법에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!