--TEST-- Stack limit 002 - Stack limit checks with max_allowed_stack_size detection (fibers) --SKIPIF-- --EXTENSIONS-- zend_test --INI-- fiber.stack_size=512k --FILE-- getMessage(), "\n"; } try { clone new Test2; } catch (Error $e) { echo $e->getMessage(), "\n"; } try { replace(); } catch (Error $e) { echo $e->getMessage(), "\n"; } }); $fiber->start(); ?> --EXPECTF-- array(4) { ["base"]=> string(%d) "0x%x" ["max_size"]=> string(%d) "0x%x" ["position"]=> string(%d) "0x%x" ["EG(stack_limit)"]=> string(%d) "0x%x" } Maximum call stack size of %d bytes (zend.max_allowed_stack_size - zend.reserved_stack_size) reached. Infinite recursion? Maximum call stack size of %d bytes (zend.max_allowed_stack_size - zend.reserved_stack_size) reached. Infinite recursion? Maximum call stack size of %d bytes (zend.max_allowed_stack_size - zend.reserved_stack_size) reached. Infinite recursion?