PHP Array Operator

Description

You can create and manage arrays using square brackets []. [] can both create arrays and add elements to the end of an array.

Syntax

Array operator has the following syntax.

$arratName[] = "new Value";

or

$arratName[index] = "new Value";

or

$arratName["key"] = "new Value";

or

$arratName[index]; // get value by index

or

$arratName["key"]; // get value by key

Example 1

The following code uses the array operator to create and indexed array.


<?PHP/*from www  .  ja  v a2 s . c  o  m*/
$array[] = "Foo"; 
$array[] = "Bar"; 
$array[] = "java2s.com"; 
var_dump($array); 
?>

The code above generates the following result.

Example 2

For non-default indices, we can place our key inside the square brackets, like this:


<?PHP/*  ww w. j  ava 2 s . c  o m*/
$array["a"] = "Foo"; 
$array["b"] = "Bar"; 
$array["c"] = "Baz"; 
var_dump($array); 
?>

The code above generates the following result.





















Home »
  PHP Tutorial »
    Data Types »




Array
Array Associative
Array Util
ArrayObject
Data Types
Date
Date Format
DateTime
Number
String
String Escape
String Filter
String HTML
String Type
Timezone