mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
RFC: https://wiki.php.net/rfc/deprecations_php_8_5#deprecate_backticks_as_an_alias_for_shell_exec
19 lines
354 B
PHP
19 lines
354 B
PHP
--TEST--
|
|
Bug #73615 (phpdbg without option never load .phpdbginit at startup)
|
|
--SKIPIF--
|
|
<?php
|
|
if (!getenv('TEST_PHPDBG_EXECUTABLE')) die("SKIP: No TEST_PHPDBG_EXECUTABLE specified");
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$phpdbg = getenv('TEST_PHPDBG_EXECUTABLE_ESCAPED');
|
|
|
|
chdir(__DIR__."/bug73615");
|
|
|
|
print shell_exec("$phpdbg -qn");
|
|
|
|
?>
|
|
--EXPECT--
|
|
Executed .phpdbginit
|