Get your own PHP server Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<pre>
<?php  
$cars = array("Volvo", "BMW", "Toyota");
array_pop($cars);
var_dump($cars);
?>  
</pre>
</body>
</html>
array(2) {
  [0]=>
  string(5) "Volvo"
  [1]=>
  string(3) "BMW"
}