Source Code:
(back to article)
<?php $alphabets = array('a', 'b', 'c'); $new_array = array_pad($alphabets, 7, 'z'); print_r($new_array); ?>
Result:
Report an issue