所有站点的 yii 供应商
文件夹结构:
htdocs:
--includes
----yii
------framework
--------vendors
----------my_vendor1.php
----------my_vendor2.php
--site1
--site2
如何为 site1
、site2
导入 my_vendor1.php
和 my_vendor2.php
?
folders structure:
htdocs:
--includes
----yii
------framework
--------vendors
----------my_vendor1.php
----------my_vendor2.php
--site1
--site2
How to import my_vendor1.php
and my_vendor2.php
for site1
, site2
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设它们位于
yii/framework
文件夹中,如您所示,您可以使用system
路径别名,如下所示:假设两个站点使用相同的 Yii 安装,您现在可以调用
my_vendor1.php
中的任何一个。您实际上也可以将其添加到每个站点的配置文件中:
Assuming that they are inside the
yii/framework
folder as you show, you can easily import anything in the Yii framework directory using thesystem
Path Alias, like so:Assuming both sites using the same Yii installation, you can now call
my_vendor1.php
in either.You can actually add this to each site's configuration file as well: