trait 建立个共用的空间 。当其他类 使用的时候 直接use
    image.png

    1. <?php
    2. trait A {
    3. public function show(){
    4. echo '代码复用';
    5. }
    6. }
    7. class student {
    8. use A;
    9. }
    10. $stu=new student;
    11. $stu->show();
    12. ?>