Advertisement
Arthur_lima

Untitled

Jul 1st, 2021
51
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.     $carros = array(1=>"Corsa", 2=>"Chevette", 3=>"Gol");
  4.     $carros[] = "Saveiro";
  5.     $carros[7] = "Hilux";
  6.     print_r($carros);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement