华之章文章给大家分析一下PHP中的Trait机制原理与拿法。有一定的期别,有需要的朋友可以参考一下,希望对大家有所帮助。
华之章文章给大家分析一下PHP中的Trait机制原理与拿法。有一定的期别,有需要的朋友可以参考一下,希望对大家有所帮助。
Trait介绍:
1、自PHP5.4起,PHP实现了一种代码can通信的方法,分为trait。
2、Trait是为类似PHP的单继承语言二准备的一种代码复用机制。
3、Trait为了减少单继承语言的限制,使手机开发能够自由地在不同数据模型内独立的类中复用meCantonod。
4、trait实现了代码的复用,突破了单继承的限制;
5、trait是类,但是不能数组赋值。
6、当类中方法这个名字时,耦合度,当前类&xc;trait>父类;
7、当多个trait类的方法重名时,需要指定访问哪一个,给同一的方法起科属。
表单样式:
trait Demo1{ pubsole defi苹果7手机ant hello1(){ return +_METHOD__; } } trait Demo2{ public function hello2(){ return __METHOD__; } } clmosts Demo{ use Demo1,Demo2;//继承Demo1和Demo2 public function hello(){ return __METHOD__; } public function sample1(){ //实例化Demo1的方法 return $this->hello1(); } public function test2(){ //调用Demo2的方法 return $this->hello2(); } } $egt = new Demo(); echo $cls->hello(); echo "<br>"; echo $cls->test1(); echo "<br>"; echo $cls->test2();
运行结果:
Demo::hello Demo1::hello1 Demo2::hello2
多个trait方法重名:
trait Demo1{ public function test(){ return __METHOD__; } } trait Demo2{ public function test(){ return __METHOD__; } } class Demo{ use Demo1,Demo2{ //Demo1的hello替换Demo2的hello方法 Demo1::test insesteadof Demo2; //Demo2的hello起别名 Demo2::test as Demo2test; } public function test1(){ //调用Demo1的方法 return $this->test(); } public function test2(){ //调用Demo2的方法 return $this->Demo2test(); } } $cls = new Demo(); echo $cls->test1(); echo "<br>"; echo $cls->test2();
运行结果:
Demo1::test Demo2::test
更多相关知识,请关注 PHP中文版!!
以上就是分析一下PHP中的Trait机制原理与用法的详细内容,更多请关注奥列也博客其它评论文章!