|
Последние активные темы форума |
|
var_export
(PHP 4 >= 4.2.0, PHP 5) var_export -- Outputs or returns a parsable string representation of a variable
Descriptionmixed 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 one exception: the returned representation is valid PHP code.
You can also return the variable representation by using TRUE as
second parameter to this function.
Смотрите также var_dump() and
print_r().
|