block34 Posted July 25, 2022 Share Posted July 25, 2022 (edited) $ php -i | grep xdebug.var xdebug.var_display_max_children => 128 => 128 xdebug.var_display_max_data => 512 => 512 xdebug.var_display_max_depth => 3 => 3 $ export PHP_INI_SCAN_DIR=. $ php -i | grep -F .php.ini Additional .ini files parsed => ./.php.ini $ cat .php.ini xdebug.var_display_max_depth = -1 xdebug.var_display_max_children = -1 xdebug.var_display_max_data = -1 $ php -i | grep xdebug.var || echo NOT FOUND NOT FOUND Why? Edited July 25, 2022 by block34 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.