Sidebars examples

Sidebar

Trait.php

Code
<?php

trait t1 {
    public function f1() {
        return "this string is from the trait";
    }
}

abstract class ab {

    public function f1() {
        $str = "result from class";
        return $str;
    }

}

class Test extends ab {

    use t1;
}

$foo = new Test;
echo  $foo->f1();
Output
this string is from the trait