Get your own PHP server Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<pre>
<?php  
$cars = array("brand" => "Ford", "model" => "Mustang", "year" => 1964);
unset($cars["model"]);
var_dump($cars);
?>  
</pre>
</body>
</html>
array(2) {
  ["brand"]=>
  string(4) "Ford"
  ["year"]=>
  int(1964)
}