[ create a new paste ] login | about

Link: http://codepad.org/M0SIY4G5    [ raw code | output | fork ]

PHP, pasted on Jan 17:
1
2
3
4
5
6
7
8
9
10
<?php
$array = array(
  '0' => 12,
  '2' => 64,
  '3' => 75
);

$index = 2;

echo $array[$index];


Output:
1
64


Create a new paste based on this one


Comments: