Advertisement
Arthur_lima

Untitled

Jul 1st, 2021
58
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.  
  7.     echo count($carros);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement