PHP Function List
var_dump() doesn't exist. Closest matches:
- var_dump
- variant_cmp
- variant_imp
- debug_zval_dump
- apc_bin_dump
- array_sum
- array_map
- var_export
- variant_div
- variant_mod
- variant_mul
- variant_and
- variant_pow
- variant_add
- variant_sub
- ncurses_scr_dump
- apc_bin_dumpfile
- varnishadmin
- counter_bump
- variant_idiv
Site Search Results
-
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 ...
-
var_export() gets structured information about the given variable. It is similar to var_dump() with one exception: the returned representation is valid PHP code.
-
print_r() displays information about a variable in a way that's readable by humans. print_r(), var_dump() and var_export() will also show protected and private properties ...
-
var_dump (validate_int ($foo)); // false, too large var_dump (validate_int ($bar)); // false, too large function validate_int ($input) { return filter_var
-
$http_response_header - Manualfunction get_contents () { file_get_contents ("http://example.com"); var_dump ($http_response_header);} get_contents (); var_dump ($http_response_header);
-
var_dump ($_GET); // Element 'foo' is string(1) "a" var_dump ($_POST); // Element 'bar' is string(1) "b" var_dump ($_REQUEST); // Does not contain elements 'foo' or 'bar'
-
var_dump (isset($def-> ghi)); // bool(false) var_dump (isset($def-> ghi-> jkl)); // bool(false) var_dump ($abc); // object(stdClass)#1 (1 ...
-
php > var_dump(json_decode('this is a simple string')); string(23) "this is a simple string" in PHP 5.3.2 : php > var_dump(json_decode('this is a simple string'));
-
FAQ. The PHP FAQ is your first stop for general information and those questions that seem to be on most people's minds. If you have licensing questions, see the separate ...
-
var_dump ($result1); $result2 = preg_replace ('#(text)#', preg_escape_back ($b), $a); // Succeeds var_dump ($result2); } // Escape backreferences from string for use with regex

Other forms of search
To search the string "var_dump()" using other options, try searching:
- Only the documentation
- Only this mirror
- The entire php.net domain
- pear.php.net
- pecl.php.net
- The Bug DB
- php-general mailing list
- Internals mailing list
- Documentation mailing list
For a quick overview over all documented PHP functions, click here.
