mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
16 lines
351 B
Plaintext
16 lines
351 B
Plaintext
|
--TEST--
|
||
|
Bug #74815 crash with a combination of INI entries at startup
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
$php = getenv("TEST_PHP_EXECUTABLE");
|
||
|
|
||
|
echo shell_exec("$php -n -d error_log=errors.log -d error_reporting=E_ALL -d log_errors=On -d track_errors=On -v");
|
||
|
|
||
|
?>
|
||
|
==DONE==
|
||
|
--EXPECTF--
|
||
|
Deprecated: Directive 'track_errors' is deprecated in Unknown on line 0
|
||
|
%A
|
||
|
==DONE==
|