PHP

  minte9
LearnRemember




Array Basics

Keys case sensitive, type insensitive
List constructor, often used with explode
Extract variable from key/value

$A['X'] != $A['x']
$A['1'] == $A[1]

list($d, $m, $y) = explode('/', $date);
extract(['x' => 3]);  // $x = 3
b1