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 test { public $x = 2; public testFunction() { //... } }
testFunction() 内から $x にアクセスする方法はありますか?
ありがとう!:)
絶対に、単に使用する$this->x
$this->x
PHPのOOPの原則をブラッシュアップすることをお勧めします。