我在Yii中使用第三方扩展程序,我想知道,如果可以在扩展程序中使用模型。
扩展程序在我的数据库上创建一个表,该模型与我的user
表有关系规则。我已将user
模型上的关系添加到扩展程序的模型中。
当我执行findAll
查询时,它会引发错误:include(ExtensionModel.php): failed to open stream: No such file or directory
。
如何在第三方扩展程序中使用模型?
答案 0 :(得分:0)
请查看manual。在简单的情况下,您只需将其包含在第三方文件中:
require_once('path/to/yii.php');
Yii::createWebApplication('path/to/config.php');
答案 1 :(得分:0)
我认为这会有所帮助 - 请参阅下面的代码:
require_once('path/to/yii.php');
Yii::createWebApplication('path/to/config.php');