064 - Array Fill Keys
Array
(
    [a] => Testing
    [b] => Testing
    [c] => Testing
    [d] => Testing
    [e] => Testing
)

064 - Array Fill
Array
(
    [-2] => Testing
    [-1] => Testing
    [0] => Testing
    [1] => Testing
)
<?php // 064 - Array Fill Keys echo "</br><span class='myheading'>064 - Array Fill Keys</span></br>"; $a = array("a","b","c","d","e"); $newArray = array_fill_keys($a, "Testing"); echo "<pre>"; print_r($newArray); echo "</pre>"; // 064 - Array Fill echo "</br><span class='myheading'>064 - Array Fill</span></br>"; $newArray1 = array_fill(-2, 4, "Testing"); echo "<pre>"; print_r($newArray1); echo "</pre>"; ?>