1
形質の静的変数持つことがその可能:PHP、特性自体のための静的変数、どのように?
Trait Example
{
public static $var;
}
class X
{
use Example;
}
class Y
{
use Example;
}
はしかし、問題はより多くのクラスは、この特性を利用したいとき、私は致命的なエラーを取得している:
Example and X define the same property ($var) in the composition of Y. This might be incompatible, to improve maintainability consider using accessor methods in traits instead. Class was composed
これを定義する方法形質自体のための静的変数?