在 PHP 中设置环境变量以便在 Windows 批处理命令中进一步使用

发布于 2024-10-25 11:55:58 字数 652 浏览 3 评论 0原文

故事是这样的:

  • 运行 JUnit 测试活动后,我 运行 php 脚本来获取变量 $testsOK 和 $testsFailed。

  • 在同一个 php 脚本中,我必须添加到环境变量“OK”并 我获得的数字“失败” 就在同一个脚本之前。我 使用 putenv, $_ENV["OK"]= ... 甚至 apache_setenv("OK",$testsOK),其中 当然行不通,因为我这样做了 没有网络服务器,我只使用 PHP CLI。

  • 我必须使用这些环境变量“OK”和“FAILED” windows批处理命令之后 脚本已运行。

在 php.net 的 putenv 页面(http://php.net/manual/en/function.putenv.php)上有人说: “putenv/getenv、$_ENV 和 phpinfo(INFO_ENVIRONMENT) 是三个完全不同的环境存储。执行 putenv("x=y") 不会影响 $_ENV;但同样执行 $_ENV["x"]="y"不影响 getenv("x")。也不影响 phpinfo() 返回的内容。”

因此,这些方法都对我没有帮助。我的问题是:我应该放弃这种方法并尝试使用另一种语言吗? :-) 或者有什么我想念的方法。

我非常感谢你的帮助。 安卡

The story is like this:

  • After running a JUnit test campaign, I
    run a php script to get the variables
    $testsOK and $testsFailed.

  • In the same php script I have to add to environment variables "OK" and
    "FAILED" the numbers that I obtained
    just before in the same script. I
    used putenv, $_ENV["OK"]= ... even
    apache_setenv("OK",$testsOK), which
    of course does not work since I do
    not have a webserver, I only use PHP
    CLI.

  • I will have to use these environment variables "OK" and "FAILED" in
    windows batch command after the
    script was run.

On the putenv page on php.net (http://php.net/manual/en/function.putenv.php) someone says that:
"putenv/getenv, $_ENV, and phpinfo(INFO_ENVIRONMENT) are three completely distinct environment stores. doing putenv("x=y") does not affect $_ENV; but also doing $_ENV["x"]="y" likewise does not affect getenv("x"). And neither affect what is returned in phpinfo()."

Therefore, none of these methods will help me. My question is: should I drop this method and try with another language? :-) or is there a way that I'm missing.

I would very much appreciate your help.
Anca

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

生生漫 2024-11-01 11:55:58

您可以将调用包装在脚本中,PHP 将通过 stdout 返回要设置的值;然后,脚本会将此输出捕获到适当的环境变量中。

一个非常简化的版本是这样的。

@echo off
runtestcampaign
for /f %%a in ('php myscript.php') do (
  set OK=%%a
  set Fail=%%b
)
restofbat 

You may wrap the invocation in a script, the PHP would return via stdout the values to be set; the script would then capture this output into the appropiate environment variables.

A very simplified version would be something like this.

@echo off
runtestcampaign
for /f %%a in ('php myscript.php') do (
  set OK=%%a
  set Fail=%%b
)
restofbat 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文