<?php
$colors=array('orange','red','yellow');
$fruits=array('orange','apple','banana');
$temp=array_combine($colors,$fruits);
reset($temp);
do{
echo key($temp)."==>".current($temp);
echo"<br>";
}while(next($temp));
?>