我们如何从数据库或 App 中的其他文件访问数据.php Laravel 5 中配置文件夹的数据


how do we access data from database or other files in app.php of the config folder in laravel 5

我们如何从数据库或 app.php 中的其他文件访问数据 laravel 5 中的配置文件夹?我想访问应用程序外部的其他文件

有关从数据库访问数据的信息,请参阅运行选择查询示例:

$results = DB::select('select * from users where id = ?', [1]);

select 方法将始终返回结果数组。

有关从另一个文件访问数据的信息,请参阅查看和此处。