route中加入中间件访问报错
FatalErrorException in AliasLoader.php line 63: Maximum function nesting level of '100' reached, aborting! 添加中间件之后,访问报这个错,哪的问题
FatalErrorException in AliasLoader.php line 63: Maximum function nesting level of '100' reached, aborting! 添加中间件之后,访问报这个错,哪的问题
2017-03-02
见这里回答:https://stackoverflow.com/questions/35253978/maximum-function-nesting-level-error-laravel-5-2
Worked for me, edit the file php.ini or 50-extension-xdebug.ini and add the following: xdebug.max_nesting_level = 250 to increase the value of '100' that comes by default. And then restart the apache service.
举报