php的foreach 同時遍歷兩個數組並輸出

$a=array("h1","h2","h3");
$b=array("c1","c2","c3");
 
for($a as $key => $value)
{
    echo $value . $b[$key];
}