var_dump

Syntax

void var_dump ( mixed expression [, mixed expression [, ...] ] )

Popis

Príkaz jazyka PHP
Dumps information about a variable

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.

In PHP 5 only public, private and protected properties of objects will be returned in the output.

Tip: Jako pro cokoliv, co posílá své výsledky přímo do prohlížeče, můžete použít funkce pro řízení výstupu k zachycení výstupu této funkce a jeho uložení - například - do řetězce (string).

Príklad

<?php
$a = array (1, 2, array ("a", "b", "c"));
var_dump($a);
/*příklad vypíše:
array(3) {
  [0]=>
  int(1)
  [1]=>
  int(2)
  [2]=>
  array(3) {
    [0]=>
    string(1) "a"
    [1]=>
    string(1) "b"
    [2]=>
    string(1) "c"
  }
}
*/

?>


Pozri aj

var_export, print_r