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.
我目前有一个脚本,它将通过浏览器运行,并通过“php”命令行工具单独运行。
现在的问题是,我可以在从浏览器调用脚本时访问 Apache 环境变量,但在通过命令行调用脚本时无法访问它。
如何让命令行脚本也可以使用 Apache 环境?
首先,您必须使用以下命令声明您的环境变量:
export APPLICATION_ENV=development
然后你可以在你的应用程序 cli 中使用getenv('APPLICATION_ENV');.
getenv('APPLICATION_ENV');