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.
目前,我的 .env 文件中有一个环境变量。
MY_NAME_TEST=Testing
如何将该变量作为配置文件中路径的一部分传递?我正在尝试获得类似于以下的路径:
base_path('Plugins/Testing/Database/Migrations/')
注意上面示例中路径的“测试”部分;我需要这个名字每次都不同。
env通过使用该函数,您可以在 laravel 项目中的任何位置检索值。
env
env('MY_NAME_TEST'); // returns "Testing"
在您的情况下,它将像这样使用:
base_path('Plugins/' . env('MY_NAME_TEST') . '/Database/Migrations/'
env如果尚未设置值,则该函数采用的第二个参数是默认值。