PHP | var_export() Function Last Updated : 11 Jul, 2025 Comments Improve Suggest changes Like Article Like Report The var_export() is a built-in function in PHP which is used to return the structured value(information) of a variable that is passed to this function as a parameter. This function is similar to the var_dump() function.Syntax: var_export($var, $return) Parameters: This function accepts two parameters as shown in the above syntax and are described below: $var: This parameter represents the variable to be exported.$return: This is an optional parameter and is of boolean type. In case it is used and set to true then this function returns the variable representation instead of outputting it. The default value of this parameter is FALSE. Return Type: It returns the variable representation if $return parameter is used and set to true otherwise this function returns NULL.Below programs illustrate the var_export() function:Program 1: php <?php // PHP program to illustrate // the var_export() function $var = '11.89'; $res = var_export($var, true); echo $res; ?> Output: '11.89' Program 2: php <?php // PHP program to illustrate // the var_export() function $var = +11.99; $res = var_export($var); echo $res ; ?> Output: 11.99 Reference: https://www.php.net/manual/en/function.var-export.php Create Quiz Comment S Shivani2609 Follow 0 Improve S Shivani2609 Follow 0 Improve Article Tags : Misc Web Technologies PHP Explore BasicsPHP Syntax4 min readPHP Variables5 min readPHP | Functions6 min readPHP Loops4 min readArrayPHP Arrays5 min readPHP Associative Arrays4 min readMultidimensional arrays in PHP5 min readSorting Arrays in PHP4 min readOOPs & InterfacesPHP Classes2 min readPHP | Constructors and Destructors5 min readPHP Access Modifiers4 min readMultiple Inheritance in PHP4 min readMySQL DatabasePHP | MySQL Database Introduction4 min readPHP Database connection2 min readPHP | MySQL ( Creating Database )3 min readPHP | MySQL ( Creating Table )3 min readPHP AdvancePHP Superglobals6 min readPHP | Regular Expressions12 min readPHP Form Handling4 min readPHP File Handling4 min readPHP | Uploading File3 min readPHP Cookies9 min readPHP | Sessions7 min read Like