Converting an object to an array will convert properties to elements of the resulting array : array « Data Structure « PHP






Converting an object to an array will convert properties to elements of the resulting array

 
<?php 
class myclass { 
    public $name; 
    public $address; 
    private $age; 
    function SetAge($age) { 
        $this->age = $age; 
    } 
} 

$obj = new myclass; 
$obj->name = "John"; 
$obj->address = "Main Street"; 
$obj->SetAge(47); 
$arr = (array)$obj; 
print_r($arr); 
?>
  
  








Related examples in the same category

1.A list of numbers using an array variable
2.Accessing Array Elements
3.Arrays
4.Create an array
5.Creates an array with keys 0 through 3
6.Creating arrays with array()
7.Creating multidimensional arrays with array()
8.Creating numeric arrays with array()
9.Setting up an associative array is similarly easy
10.Demonstrate the Difference Between the Array '+' Operator and a True Array Union
11.Using the array function to create an array of weekdays
12.Using the array() Function
13.Queue Handling Library
14.Stack Handling Library