var_dump()
var_dump - Dumps information about a variable
Syntax
var_dump (
mixed $expression,
mixed $expression,
$...)
Arguments
- expression - The variable you want to export.
- expression
- ...
Description
This function displays structured information about one or more expressions that includes its type and value. Arrays and objects are explored recursively with values indented to show structure.
Version
PHP 4, 5
Return value
No value is returned.