Skip to content

Latest commit

History

History
24 lines (20 loc) 路 500 Bytes

File metadata and controls

24 lines (20 loc) 路 500 Bytes

What is the output of the following PHP script?

$car聽=聽['year'聽聽=>聽2010, 'make'聽聽=>聽'Porsche', 'model'聽=>聽911];
next($car);
foreach聽($caras$k聽=>聽$v)聽{
    echo$v;
}

Enter the exact script output

  • A) 2010Porsche911
  • B) 2010 Porsche 911
  • C) 012
  • D) an error
Answer

Answer: A