barbushin / php-console

Handle PHP errors, dump variables, execute PHP code remotely in Google Chrome
https://chrome.google.com/webstore/detail/php-console/nfhmhhlpfleoednkpnnnkolmclajemef
MIT License
1.34k stars 283 forks source link

Chrome Extension Limits Array to 100 Results #149

Closed sleewok closed 6 years ago

sleewok commented 6 years ago

Is there any way to get the Chrome extension to display all the values in an array that is printed to the console? By default it is limiting it to 100, which is not very helpful in my case.

Thanks!

barbushin commented 6 years ago

You can try to serialize your array with json_encode or implode(', ', $var).