Advertisement
Arthur_lima

Untitled

Jul 3rd, 2021
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.13 KB | None | 0 0
  1. <?php
  2.    
  3.     $carros1 = array("Gol", "Corsa", "Uno");
  4.     print_r($carros1);
  5.     echo "<br>";
  6.    
  7.     array_pop($carros1);
  8.     print_r($carros1);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement