Data Type Php

$birds = array('a', 'b', 'c', 'd'); 
$more_birds = array_pad($birds, -6, 'some bird'); 
printf("%s", var_export($more_birds, TRUE)); 
?>