php trait

来源:互联网 发布:网络小红人姗姗和涵涵 编辑:程序博客网 时间:2024/05/16 09:13

php trait可以复用类,php类单继承,trait可以让php拥有多个类的方法。

用法:在使用的类中 use trait类即可。

优先级:本类>trait>基类