Using the array() Function : array « Data Structure « PHP






Using the array() Function

 
<?php

    /* Arrays $foo and $bar are equivalent arrays */
    $foo = array('a' => 1, 'b' => 2, 'c' => 3);
    $bar['a'] = 1;
    $bar['b'] = 2;
    $bar['c'] = 3;
?>
  
  








Related examples in the same category

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