--TEST-- FPM: gh8157 - post related INI settings not applied for .user.ini --SKIPIF-- --FILE-- setUserIni($ini); $tester->start(); $tester->expectLogStartNotices(); $tester ->request( headers: [ 'CONTENT_TYPE' => 'application/x-www-form-urlencoded'], stdin: 'foo=' . str_repeat('a', 20000), method: 'POST', ) ->expectBody([ 'Warning: PHP Request Startup: POST Content-Length of 20004 bytes exceeds the limit of 10240 bytes in Unknown on line 0', 'array(0) {', '}', ], skipHeadersCheck: true); $tester->terminate(); $tester->close(); ?> Done --EXPECT-- Done --CLEAN--