<html lang="en">
<head>
<meta charset="utf-8">
<title>PHP Skip the Listing of Some Variables</title>
</head>
<body>
<pre>
// Sample array
$phone = array("Apple", "iPhone", "128GB");
// Listing some of them
list($brand, , $rom) = $phone;
echo "<p>This is an $brand device with $rom internal storage.</p>";
// Listing the third one
list(, , $rom) = $phone;
echo "<p>This is a mobile device with $rom internal storage.</p>";