Merge branch 'PHP-8.3'

* PHP-8.3:
  Use getenv to prevent undefined key warning
This commit is contained in:
Niels Dossche 2024-01-15 20:15:29 +01:00
commit c39a8631b7

View file

@ -7,7 +7,7 @@ if (!getenv('TEST_PHPDBG_EXECUTABLE')) die("SKIP: No TEST_PHPDBG_EXECUTABLE spec
--FILE-- --FILE--
<?php <?php
putenv('PHP_INI_SCAN_DIR='.__DIR__."/gh12962"); putenv('PHP_INI_SCAN_DIR='.__DIR__."/gh12962");
passthru($_ENV['TEST_PHPDBG_EXECUTABLE'] . " -q"); passthru(getenv('TEST_PHPDBG_EXECUTABLE') . " -q");
?> ?>
--EXPECT-- --EXPECT--
Executed .phpdbginit Executed .phpdbginit