Functions Php

  
  $scores = array(88, 75, 91, 84);
  list($maths, $english, , $biology) = $scores;
  @printf("

Maths: %d; English: %d; History: %d; Biology: %d.

\n",
          $maths, $english, $history, $biology);
?>