Yii2 包含文件到项目
Yii2 include file to project
现在我有一个 Twitter api 库 (TwitterAPIExchange.php)。
我想要做的只是将它自动加载到项目中并使其在所有 model/controller 中可用。
可能吗?请帮忙!!
在你的composer.json
中添加require
块这一行:
"J7mbo/twitter-api-php": "*"
并且在控制台中 运行 composer update
。
在您的模型或控制器中添加 use TwitterAPIExchange;
并且 TwitterAPIExchange
将在 class 中可用。
中有更多文档
现在我有一个 Twitter api 库 (TwitterAPIExchange.php)。 我想要做的只是将它自动加载到项目中并使其在所有 model/controller 中可用。 可能吗?请帮忙!!
在你的composer.json
中添加require
块这一行:
"J7mbo/twitter-api-php": "*"
并且在控制台中 运行 composer update
。
在您的模型或控制器中添加 use TwitterAPIExchange;
并且 TwitterAPIExchange
将在 class 中可用。