PHP Dump is an enhanced version of the var_dump PHP function. It can be used during debugging to quickly output and display many data types, including multi-dimensional arrays and MySQL result sets. It will output the data in an easy to read format.
Features:
- Support for: strings, integers, floats, Booleans, arrays & multidimensional arrays, mysql result sets, objects, streams, timestamps & null values.
- Able to output data with or without “nice” css formatting.
- Supports nesting of different data types, eg. An array could contain a mysql result set, which could in turn contain Booleans, integers etc.
- Provides tool tips describing what data type each outputted variable is.
- Will default to using var_dump in the event that it doesn’t support the given variable type (output will be wrapped in pre tags for ease of reading).
- SQL Query support (code highlighting and formatting).