Using the @ operator to suppress a warning about the undefined variables
<?php
$scores = array(88, 75, 91, 84);
list($maths, , $history) = $scores;
@printf("<p>Maths: %d; English: %d; History: %d; Biology: %d.</p>\n",
$maths, $english, $history, $biology);
?>
Related examples in the same category