PHP comes out a function of var_export that returns structured information about any variable. Whatever the variable is that is defined with var_export() comes up with structured information. The returned value of this function is a valid PHP code. This makes var_export a unique function from its defined function var_dump(). This var_export function of PHP came after the PHP 4 stable release version of PHP. The function only returns the value as the structured information of any variable.
Start Your Free Software Development Course
Web development, programming languages, Software testing & others
Syntax of PHP var_export()
Given below is the syntax of PHP var_export():
var_export(variable, return)
- variable: The variable we want to export.
- return: Optional parameter, if used, returns the variable representation.
A variable is a required parameter with String as the Data Type for that. Where as the return is the optional parameter as the Boolean Data Type.
Example:
<!DOCTYPE html> <html> <body> <?php $a = 3; echo var_export($a, true) . "<br>"; echo var_export($a) . "<br>"; ?> </body> </html>
Output:
Working of var_export() Function
- The var_export() function takes up the input as the variable whose structured definition is to be checked. The return value depends on the return parameter (the optional one that is used and set to true).
- If that is not done, the function will return null. When the return parameter is used, it uses the internal output buffering methodology that basically tells PHP to hold some data before it is sent to the browser. Having this, we can retrieve the data and manipulate it if needed to avoid the use of the call back function.
- A valid PHP code with structured information about the variable is returned with this function.
Examples of PHP var_export()
Using PHP with basic Data Types as the example:
Example #1: Integer
This takes up Integer as the input as results the structured information about the variable as Integer.
Code:
<!DOCTYPE html> <html> <body> <?php $a = 320; echo var_export($a) . "<br>"; $a = 2; echo var_export($a) . "<br>"; $a = -32; echo var_export($a) . "<br>"; $a = 3200; echo var_export($a) . "<br>"; ?> </body> </html>
Output:
Example #2: String
This takes up String as the input as result the structured information about the variable as String.
Code:
<!DOCTYPE html> <html> <body> <?php $b = "PHP Example!!"; echo var_export($b) . "<br>"; $b = "I am String"; echo var_export($b) . "<br>"; ?> </body> </html>
Output:
Example #3: Double
This takes up Double/Decimal as the input as results the structured information about the variable as Double.
Code:
<!DOCTYPE html> <html> <body> <?php $a = 322.5; echo var_export($a) . "<br>"; $a = 22.51; echo var_export($a) . "<br>"; ?> </body> </html>
Output:
Example #4: Array
This takes up Array as the input as results the structured information about the variable as Array.
Code:
<!DOCTYPE html> <html> <body> <?php $a = array("reddish", "yellowish", "Greenish"); echo var_export($a) . "<br>"; $a = array("Apple", "Grapes", "Mango"); echo var_export($a) . "<br>"; ?> </body> </html>
Output:
Example #5: Array of Array
This takes up Array of Array as the input as results the structured information about the variable as Array.
Code:
<!DOCTYPE html> <html> <body> <?php $a = array("abc", "Hello PHP!", 222.4, array("reddish", "yellowish", "Greenish")); echo var_export($a) . "<br>"; $a = array(34, "Hello", array("Apple", "Grapes", "3")); echo var_export($a) . "<br>"; ?> </body> </html>
Output:
We can even set an object and map it with a variable. Calling that particular in var_export function will give the state of an object.
Let us check that with an example :
Code:
<!DOCTYPE html> <html> <body> <?php $person = new stdClass; $person->name = 'John Anand'; $person->website = 'https://php.net/John.php'; echo var_export($person); ?> </body> </html>
Output:
We can also define a class in PHP and use the var_export function that sets the state of the class variable.
Let us check that with an example :
Code:
<!DOCTYPE html> <html> <body> <?php class A { public $var; } $a = new A; $a->var = 50; var_export($a); echo var_export(a); ?> </body> </html>
Output:
Short Note
There are some points that need to be noted for the PHP var export function:
- This VarExport Function does not export type Resource Variables.
- The Circular references are also not handled by the VarExport function as the parsable PHP codes are not generated for circular references.
- The processed object implements the _set_state method except for the stdClass, which is exported using an array that is casted with an object.
Conclusion
From the above article, we saw the use of Function var_export in PHP. We tried to see how the var_export() function works in PHP and what are is use at the programming level from various example and classification. We also saw the internal working and the advantages of having the type of data we define for various programming purposes. Also, the syntax and examples helped us to understand much precisely over the function.
The above is the detailed content of PHP var_export(). For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In JavaScript, you need to use a custom function to determine whether two arrays are equal, because there is no built-in method. 1) Basic implementation is to compare lengths and elements, but cannot process objects and arrays. 2) Recursive depth comparison can handle nested structures, but requires special treatment of NaN. 3) Special types such as functions and dates need to be considered, and further optimization and testing are required.

Social security number verification is implemented in PHP through regular expressions and simple logic. 1) Use regular expressions to clean the input and remove non-numeric characters. 2) Check whether the string length is 18 bits. 3) Calculate and verify the check bit to ensure that it matches the last bit of the input.

The methods to correctly handle this pointing in JavaScript closures include: 1. Use arrow functions, 2. Use bind methods, 3. Use variables to save this. These methods ensure that this intrinsic function correctly points to the context of the external function.

Using JavaScript to implement data encryption can use the Crypto-JS library. 1. Install and introduce the Crypto-JS library. 2. Use the AES algorithm for encryption and decryption to ensure that the same key is used. 3. Pay attention to the secure storage and transmission of keys. It is recommended to use CBC mode and environment variables to store keys. 4. Consider using WebWorkers when you need high performance. 5. When processing non-ASCII characters, you need to specify the encoding method.

In PHP, the constructor is defined by the \_\_construct magic method. 1) Define the \_\_construct method in the class, which will be automatically called when the object is instantiated and is used to initialize the object properties. 2) The constructor can accept any number of parameters and flexibly initialize the object. 3) When defining a constructor in a subclass, you need to call parent::\_\_construct() to ensure that the parent class constructor executes. 4) Through optional parameters and conditions judgment, the constructor can simulate the overload effect. 5) The constructor should be concise and only necessary initialization should be done to avoid complex logic or I/O operations.

The steps to deploy a Joomla website on PhpStudy include: 1) Configure PhpStudy, ensure that Apache and MySQL services run and check PHP version compatibility; 2) Download and decompress PhpStudy's website from the official Joomla website, and then complete the installation through the browser according to the installation wizard; 3) Make basic configurations, such as setting the website name and adding content.

The benefits of using dependency injection (DI) in PHP include: 1. Decoupling, making the code more modular; 2. Improve testability and easy to use Mocks or Stubs; 3. Increase flexibility and facilitate reusing of dependencies; 4. Improve reusability, and the classes can be used in different environments. By passing dependencies externally to objects, DI makes the code easier to maintain and extend.

SendingemailswithPHPisstraightforwardusingthemail()functionormoreadvancedlibrarieslikePHPMailer.1)Usemail()forbasicemails,settingrecipients,subjects,messages,andheaders.2)ForHTMLemails,adjustheaderstospecifyHTMLcontent.3)EmployPHPMailerforenhancedfea
