首页 > Web开发 > 详细

php中trait的用法

时间:2018-12-28 10:38:08      阅读:167      评论:0      收藏:0      [点我收藏+]
  • 代码:
    <?php
    /*
    * 定义trait:test1
    */
    trait test1{
    public function sayhello(){
        echo ‘hello‘;
    }
    }
    /*
    * 定义trait:test2
    */
    trait test2{
    public function sayworld(){
        echo ‘world‘;
    }
    }
    /*
    * 定义类test,继承自trait:test1,test2
    */
    class test{
    use test1,test2;
    /*
     * 定义类test的方法:sayhelloworld
     */
    public function sayhelloworld(){
        // 使用trait:test1中的sayhello方法
        $hello = $this->sayhello();
        // 使用trait:test2中的sayworld方法
        $world = $this->sayworld();
        echo $hello.$world;
    }
    }
  • 测试:
    // 实例化类test的对象objtest
    $objtest = new test();
    // 调用对象objtest的sayhelloworld方法
    $objtest->sayhelloworld();
  • 输出:
    技术分享图片
  • php中trait的用法

    原文:http://blog.51cto.com/12173069/2336229

    (0)
    (0)
       
    举报
    评论 一句话评论(0
    关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
    © 2014 bubuko.com 版权所有
    打开技术之扣,分享程序人生!