Advertisement
Arthur_lima

Untitled

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