<?php
trait Foo {
function bar() {
return 'baz';
}
}
echo Foo::bar(),"\\n";
?>
PHP 实现代码复用的一个方法 traits新特性(4)
内容版权声明:除非注明,否则皆为本站原创文章。
转载注明出处:http://www.heiqu.com/fba8a10491ba2fdeba0f7f9baa4d8d0a.html
<?php
trait Foo {
function bar() {
return 'baz';
}
}
echo Foo::bar(),"\\n";
?>
内容版权声明:除非注明,否则皆为本站原创文章。
转载注明出处:http://www.heiqu.com/fba8a10491ba2fdeba0f7f9baa4d8d0a.html