mirror of
https://github.com/php/php-src.git
synced 2024-11-26 19:33:55 +08:00
Disable output buffering in CLI overriding php.ini setting.
Fixes #26755.
This commit is contained in:
parent
85f62caad2
commit
d2317fc110
@ -686,6 +686,7 @@ int main(int argc, char *argv[])
|
||||
INI_HARDCODED("register_argc_argv", "1");
|
||||
INI_HARDCODED("html_errors", "0");
|
||||
INI_HARDCODED("implicit_flush", "1");
|
||||
INI_HARDCODED("output_buffering", "0");
|
||||
INI_HARDCODED("max_execution_time", "0");
|
||||
|
||||
optind = orig_optind;
|
||||
|
Loading…
Reference in New Issue
Block a user