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.
クラスceff()内にwsGO()という関数があります。クラスceff内からその関数を実行できるようにしたいと思います。私はこのコードを使用しました:
class ceff{ $ceff_instance = new ceff($this); $ceff_instance = wsGO(); public function wsGO(){ .... } }
しかし、これはうまくいきませんでした。何か案は?
PHP では、関数やコンストラクター呼び出しではなく、定数でのみプロパティを初期化できます。ただし、次のようなコンストラクターでそれを行うことができます。
class ceff{ public $ceff_instance; public function __construct() { $this->ceff_instance = $this->wsGO(); } public function wsGO(){ .... } }