在PHP中,self
關鍵字指的是當前類,而不是當前 trait。因此,在 trait 中使用 self
并不會指向 trait 自身。如果想要在 trait 中引用 trait 自身,可以使用 static
關鍵字。
例如:
trait MyTrait {
public static function myMethod() {
echo "This is a method in MyTrait";
}
public function callMyMethod() {
static::myMethod();
}
}
class MyClass {
use MyTrait;
}
$obj = new MyClass();
$obj->callMyMethod(); // This is a method in MyTrait
在上面的例子中,static::myMethod()
會調用 trait 中的 myMethod
方法。