summaryrefslogtreecommitdiff
path: root/scripts/dev/generate-phpt/src/codeSnippets/array.txt
blob: 69a4af72c13d1cb832877119a95f51cd795dc029 (plain)
1
2
3
4
5
6
7
8
9
$index_array = array(1, 2, 3);
$assoc_array = array(1 => 'one', 2 => 'two');

$variation_array = array(
  'empty array' => array(),
  'int indexed array' => $index_array,
  'associative array' => $assoc_array,
  'nested arrays' => array('foo', $index_array, $assoc_array),
  );