<?php 
 
$a1=array("seat","renault","volkswagen");
$a2=array("s","r","v");
$a3=array_replace($a1,$a2);
print_r($a3);
 
?>