Description
mixed
var_export ( mixed expression [, bool return])
This function returns structured information about the variable that is
passed to this function. It is similar to var_dump()
with two exceptions. The first one is that the returned representation is
valid PHP code, the second that it will also return protected and private
properties of an object with PHP 5.
You can also return the variable representation by using TRUE as
second parameter to this function.
See also var_dump() and
print_r().