<<< Previous question <<< Question ID#0388.md >>> Next question >>>
What is the output of the following PHP script?
$car聽=聽['year'聽聽=>聽2010, 'make'聽聽=>聽'Porsche', 'model'聽=>聽911];
next($car);
foreach聽($car聽as聽$k聽=>聽$v)聽{
echo聽$v;
}Enter the exact script output
- A) 2010Porsche911
- B) 2010 Porsche 911
- C) 012
- D) an error
Answer
Answer: A