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; } // ... }