trait_test.php 259 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: chendeben
  5. * Date: 2019-01-12
  6. * Time: 11:14
  7. */
  8. trait trait_test{
  9. function test_1($a,$b){
  10. return round($a/$b);
  11. }
  12. }
  13. trait trait_test2{
  14. function test_2($a,$b){
  15. return round($a*$b);
  16. }
  17. }