Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は持っています
class Meat extends Food { $var = Food::foodFunction… }
Foodクラスに$varを設定する必要がありますが、どうすればよいですか?
ありがとう
$var食品クラスにprotected/public変数がある場合は$this->var、それprivateを設定することはできません。
$var
protected
public
$this->var
private
コンストラクターまたはその他のメンバー関数で$this:を使用して
$this
function __construct() { $this->var = Food::foodFunction(); }
$varそうしないと、静的でないものに初期化できません。