Premium hosting with SSD VPS, cPanel/WHM hosting and dedicated servers support and discussion forums. Get help from co-webmasters and professionals!
https://smokyhosts.com/forums/
Code: Select all
Array
 (
     [a] => green
     [b] => brown
     [0] => red
 )Code: Select all
array_intersect(), array_uintersect_assoc(), array_intersect_uassoc() and array_uintersect_uassoc(). Code: Select all
Array
 (
     [a] => green
     [0] => red
     [1] => blue
 ) Code: Select all
array(2) {
   [0] => int(4)
   [2] => string(1) "3"
 } Code: Select all
Array
 (
     [0] => apple
     [1] => raspberry
     [2] => orange
     [3] => banana
 ) Code: Select all
array_shift(), array_push(), and array_pop(). Code: Select all
Array
 (
     [0] => XL
     [1] => gold
 ) Code: Select all
array_keys().Code: Select all
array_walk(), and information about the callback type. Code: Select all
array_walk_recursive(), create_function(), list(), foreach, each(), call_user_func_array(), and array_map(), and information about the callback type. Code: Select all
Array
 (
     [0] => 1
     [1] => 1
     [2] => 1
     [3] => 13
     [4] => 1
     [8] => 1
     [9] => 19
 ) Code: Select all
Array
 (
     [1] => January
     [2] => February
     [3] => March
 )Code: Select all
array_pad(), list(), count(), foreach, and range(). Code: Select all
asort(), rsort(), ksort(), and sort(). Code: Select all
arsort(), rsort(), ksort(), and sort(). Code: Select all
Array
 (
     [event] => SIGGRAPH
     [city] => San Francisco
     [state] => CA
 ) Code: Select all
extract(). Code: Select all
is_array(), isset(), and strlen(). Code: Select all
end(), key(), next(), prev(), reset(), and each(). Code: Select all
key(), list(), current(), reset(), next(), prev(), and foreach. Code: Select all
current(), each(), prev(), next() and reset(). Code: Select all
compact(). Code: Select all
array_search(), array_key_exists(), and isset(). Code: Select all
asort(), arsort(), ksort(), sort(), natsort(), and rsort(). Code: Select all
asort(), arsort(), krsort(), uksort(), sort(), natsort(), and rsort(). Code: Select all
array(3) {
   [2]=>
   string(8) "caffeine"
   [1]=>
   string(5) "brown"
   [0]=>
   string(6) "coffee"
 }Code: Select all
each(), array() and extract(). Code: Select all
Array
 (
     [0] => IMG0.png
     [1] => IMG3.png
     [2] => img1.png
     [3] => img10.png
     [4] => img12.png
     [5] => img2.png
 )Code: Select all
Array
 (
     [0] => IMG0.png
     [4] => img1.png
     [3] => img2.png
     [5] => IMG3.png
     [2] => img10.png
     [1] => img12.png
 )Code: Select all
sort(), natsort(), strnatcmp(), and strnatcasecmp(). Code: Select all
Array
 (
     [0] => img1.png
     [1] => img10.png
     [2] => img12.png
     [3] => img2.png
 )Code: Select all
Array
 (
     [3] => img1.png
     [2] => img2.png
     [1] => img10.png
     [0] => img12.png
 )Code: Select all
natcasesort(), strnatcmp(), and strnatcasecmp(). Code: Select all
current(), end(), prev(), reset(), and each(). Code: Select all
current(), end(), next(), reset(), and each(). Code: Select all
shuffle(), array_fill(), and foreach.