在PHP中设置环境变量仅对一个用户有效,而对另一个用户无效

问题描述 投票:0回答:1

[一个用户一直在帮助我解决问题(How to force a curl request in a PHP method to fail for a unit test)。他们建议做putenv('all_proxy=localhost:5678');,这样我就可以强制curl在单元测试中动态失败(我将http_proxy / https_proxy更改为all_proxy,因为它执行所有协议)。

这在他们的Ubuntu盒子上完美运行,但是我无法在Windows 10盒子或Ubuntu盒子上运行。如果我在命令提示符下设置了all_proxy,则curl请求始终失败,因此在找到该变量时会注意到该变量。我稍微更改了他们的脚本,这似乎可以在Ubuntu上运行。php.ini中是否有一些设置可以控制putenv()是否可以覆盖环境中的变量?为什么动态环境变量可以在

其设置,但不适用于我的任何一个

Ubuntu而不是Windows上运行?测试脚本

<?php function search() { $url = 'x3m.dev'; $curl = curl_init(); curl_setopt_array($curl, [ CURLOPT_RETURNTRANSFER => 1, CURLOPT_URL => $url, ]); $data = curl_exec($curl); if (!$data) { throw new Exception('An error occurred while trying to process the request.'); } return $data; } function do_curl_request() { echo getenv('all_proxy') . "\n\n"; try { echo search(); } catch (Exception $e) { echo $e->getMessage(); } echo "\n\n"; } echo "========== first run without proxy\n"; do_curl_request(); putenv('all_proxy=localhost:5678'); echo "========== second run with proxy override\n"; do_curl_request();

它应该第一次工作,第二次抛出异常。在Windows上,如果未将all_proxy设置为Windows环境变量,则两次均有效;如果将all_proxy设置为两次,则均会引发异常。

Windows(不正确)

========== first run without proxy <html> <head></head> <body>.</body> </html> ========== second run with proxy override localhost:5678 <html> <head></head> <body>.</body> </html>

Ubuntu(正确)

========== first run without proxy <html> <head></head> <body>.</body> </html> ========== second run with proxy override localhost:5678 An error occurred while trying to process the request.

用户一直在帮助我解决一个问题(如何在PHP方法中强制执行curl请求以使单元测试失败)。他们建议做putenv('all_proxy = localhost:5678');所以我可以强迫卷曲失败...
php windows environment-variables command-line-interface
1个回答
0
投票
认识到PHP不会从用户环境中导入任何内容,这一点很重要。它具有自己的独立环境,可以根据请求进行操作(即,解释器中的每个RSHUTDOWN事件都会对其进行清理)。您在php中所做的任何事情(即putenv())都严格遵守该请求。您在shell中执行的操作不会影响PHP的环境。
© www.soinside.com 2019 - 2024. All rights reserved.