RosettaCodeData/Task/Arrays/PHP/arrays-1.php

4 lines
130 B
PHP
Raw Permalink Normal View History

2013-04-10 12:38:42 -07:00
$NumberArray = array(0, 1, 2, 3, 4, 5, 6);
$LetterArray = array("a", "b", "c", "d", "e", "f");
2015-11-18 06:14:39 +00:00
$simpleForm = ['apple', 'orange'];