mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
Merge branch 'PHP-8.3'
* PHP-8.3: Use getenv to prevent undefined key warning
This commit is contained in:
commit
c39a8631b7
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue