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--
<?php
putenv('PHP_INI_SCAN_DIR='.__DIR__."/gh12962");
passthru($_ENV['TEST_PHPDBG_EXECUTABLE'] . " -q");
passthru(getenv('TEST_PHPDBG_EXECUTABLE') . " -q");
?>
--EXPECT--
Executed .phpdbginit