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.
我正在使用 Laravel 5.4 和vlucas/phpdotenv库。
vlucas/phpdotenv
我想将一个环境变量引用到另一个环境变量,例如
APP_NAME: JUSTDOIT SIGNUP_KEY: JUSTDOIT_SIGNUP
在 SIGNUP_KEY 中,我想使用它的任何 APP_NAME。
啊,我在这里找到了答案,不要删除这个问题,因为它可能对其他人有帮助,
可以将环境变量嵌套在另一个环境变量中,这有助于减少重复。
这是通过将现有环境变量包装在${…}例如
${…}
APP_NAME: JUSTDOIT SIGNUP_KEY: ${APP_NAME}_SIGNUP
另外,如果您想在变量值中使用空格,请用“引号”括起来,例如
SIGNUP_KEY:“${APP_NAME} 注册”
参考: https ://github.com/vlucas/phpdotenv#nesting-variables