PHP: get_defined_vars() function
Description
The get_defined_vars() function returns an array of all defined variables.
Version:
(PHP 4 and above)
Syntax:
get_defined_vars()
Return value:
A multidimensional array with all the variables.
Value Type: Array.
Example:
<?php
$array1 = array(10, 20, 30, 40, 50);
$array1 = get_defined_vars();
print_r($array1);
?>
Output:
Array ( [GLOBALS] => Array ( [GLOBALS] => Array *RECURSION* [_POST] => Array ( ) [_GET] => Array ( ) [_COOKIE] => Array ( )[_FILES] => Array( ) [array1] => Array *RECURSION* ) [_POST] => Array ( ) [_GET] => Array ( ) [_COOKIE] => Array ( ) [_FILES] => Array ( ) [array1] => Array ( [0] => 10 [1] => 20 [2] => 30 [3] => 40 [4] => 50 ) )
View the example in the browser
Practice here online :
See also
Previous: floatval
Next: get_resource_type
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/php/function-reference/get_defined_vars.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics