mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Merge branch 'PHP-8.2' into PHP-8.3
* PHP-8.2: Use getenv to prevent undefined key warning
This commit is contained in:
@@ -7,7 +7,7 @@ if (!getenv('TEST_PHPDBG_EXECUTABLE')) die("SKIP: No TEST_PHPDBG_EXECUTABLE spec
|
||||
--FILE--
|
||||
<?php
|
||||
putenv('PHP_INI_SCAN_DIR='.__DIR__."/gh12962");
|
||||
passthru($_ENV['TEST_PHPDBG_EXECUTABLE'] . " -q");
|
||||
passthru(getenv('TEST_PHPDBG_EXECUTABLE') . " -q");
|
||||
?>
|
||||
--EXPECT--
|
||||
Executed .phpdbginit
|
||||
|
||||
Reference in New Issue
Block a user