개요
- PHP use
<?php
trait Greeter {
public function greet() {
echo 'hello';
}
}
class Foo {
use Greeter;
}
$foo = new Foo();
$foo->greet();
<?php
trait Greeter {
public function greet() {
echo 'hello';
}
}
class Foo {
use Greeter;
}
$foo = new Foo();
$foo->greet();