Arrays
My favorite animal is pangolins. But, I also like snow leapords, and red pandas. However, I hate crickets.
7
Array
(
[0] => bunnys
[1] => crickets
[2] => otters
[3] => pangolins
[4] => red pandas
[5] => sloths
[6] => snow leapords
)
Array
(
[0] => snow leapords
[1] => sloths
[2] => red pandas
[3] => pangolins
[4] => otters
[5] => crickets
[6] => bunnys
)
My new favorite animal is otters
ArrayArrayArray
Array
(
[cats] => fish
[goats] => trash
[Martha] => anything she can get
[deer] => all plants youre trying to grow
)
Array
(
[cat] => Array
(
[sound] => meow
[home] => houses
)
[fox] => Array
(
[sound] => who knows
[home] => rock creek
)
[dog] => Array
(
[sound] => woof
[home] => houses
)
)
array(3) {
["cat"]=>
array(2) {
["sound"]=>
string(4) "meow"
["home"]=>
string(6) "houses"
}
["fox"]=>
array(2) {
["sound"]=>
string(9) "who knows"
["home"]=>
string(10) "rock creek"
}
["dog"]=>
array(2) {
["sound"]=>
string(4) "woof"
["home"]=>
string(6) "houses"
}
}