PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular

var_dump

Tags: PHP 5.x PHP 7.x PHP 8.x

var_dump — Dumps information about a variable.

Description

var_dump(
    mixed $value,
mixed ...$values
): void
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.

Parameters

value
The expression to dump.
values
Further expressions to dump.

Return Values

No value is returned.

var_dump - New snippets