We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eeaab63 commit 25261e5Copy full SHA for 25261e5
1 file changed
frankenphp.c
@@ -570,7 +570,11 @@ PHP_FUNCTION(frankenphp_handle_request) {
570
* Reset default timeout
571
*/
572
if (PG(max_input_time) != -1) {
573
+#if PHP_VERSION_ID < 80600
574
zend_set_timeout(INI_INT("max_execution_time"), 0);
575
+#else
576
+ zend_set_timeout(zend_ini_long_literal("max_execution_time"), 0);
577
+#endif
578
}
579
#endif
580
0 commit comments