<!DOCTYPE html>
<html>
<body>
<?php
$a1=array("Dog","Cat");
$a2=array("Puppy","Kitten");
print_r(array_map(null,$a1,$a2));
?>
</body>
</html>