list($maths, $english, , $biology) = $scores; : list « Utility Function « PHP






list($maths, $english, , $biology) = $scores;

 
<?php
  
  $scores = array(88, 75, 91, 84);

  list($maths, $english, , $biology) = $scores;

  @printf("<p>Maths: %d; English: %d; History: %d; Biology: %d.</p>\n",
          $maths, $english, $history, $biology);
?>
  
  








Related examples in the same category

1.Using the list() function.
2.Each line is converted into an array
3.Extracting Values from an Array Using list()