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.
別のクラスに変数を設定する方法は? 誰か助けて?Class1 と Class2 から、クラス Template にデータを格納する必要があります。ありがとうございました。
私のサンプルクラス
セッターを作成できます。$data_class_1_a の例:
<?php class Template { private $data_class_1_a; private $data_class_1_b; // ... function setDataClass1A($value) { $this->data_class_1_a = $value; } // ... }