<!DOCTYPE html>
<html>
<body>
<?php
$a=array("red","green");
print_r(array_pad($a,-5,"blue"));
?>
</body>
</html>