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.
次のように、オブジェクト内の変数の値を返す関数があります。
public function getVar($var) { return ($this->$var); }
正常に動作しますが、変数内に格納された配列の値を取得する方法が見つかりません。私はこのようなものがうまくいくと思った:
$object->getVar("variable['value']");
しかし、そうではありません....どうすればそれを行うことができますか?