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.
我在 yii 中使用了一个模块,当应用程序模型的属性为真时,将使用该模块。
如何获取应用程序中可用的所有模型名称,以便我可以在具有属性的应用程序模型和模块之间建立有条件的关系?
您可以使用以下方法获取类名:
public function modelName() { return __CLASS__; }
并这样称呼它:
$model = new State(); echo $model->getModelName();