Skip to content

Instantly share code, notes, and snippets.

@bls1999
Forked from brysonian/first_names.php
Last active December 19, 2017 14:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bls1999/4112bf1aa13bb7cfb392fdddda90f677 to your computer and use it in GitHub Desktop.
Save bls1999/4112bf1aa13bb7cfb392fdddda90f677 to your computer and use it in GitHub Desktop.
list of first names formatted as a PHP array
<?php
$names = array(
'Anthony',
'Alexander',
'Angela',
'Allison',
'Arthur',
'Ana',
'Alex',
'Arlene',
'Alberto',
'Barry',
'Beatrice',
'Ben',
'Bertha',
'Betty',
'Bill',
'Bob',
'Bonnie',
'Bret',
'Beryl',
'Carmine',
'Chantal',
'Cristobal',
'Claire',
'Claudette',
'Charley',
'Cindy',
'Chris',
'Dwight',
'Dean',
'Dolly',
'Dorris',
'Danny',
'Danielle',
'Dennis',
'Debby',
'Erin',
'Edouard',
'Erika',
'Earl',
'Emily',
'Ernesto',
'Eugene',
'Felix',
'Fanny-Mae',
'Fay',
'Fabian',
'Frances',
'Franklin',
'Florence',
'Greg',
'Gabielle',
'Gustav',
'Grace',
'Gaston',
'Gert',
'Gordon',
'Humberto',
'Hannah',
'Henri',
'Hermine',
'Harvey',
'Helen',
'Helene',
'Iris',
'Isidore',
'Isabel',
'Ivan',
'Irene',
'Isaac',
'James',
'Jacob',
'Jerry',
'Josephine',
'Juan',
'Jeanne',
'Jose',
'Joyce',
'Karen',
'Karl',
'Kate',
'Katrina',
'Kaylee',
'Keiran',
'Kelly',
'Kelsie',
'Kent',
'Kevin',
'Kirk',
'Kyle',
'Lorenzo',
'Lili',
'Larry',
'Lisa',
'Lee',
'Leslie',
'Lucille',
'Melanie',
'Meredith',
'Michelle',
'Marco',
'Mordecai',
'Mindy',
'Maria',
'Michael',
'Noel',
'Nadine',
'Nick',
'Nicole',
'Nate',
'Nadine',
'Olga',
'Omar',
'Odette',
'Otto',
'Ophelia',
'Oscar',
'Orville',
'Pamela',
'Pablo',
'Paloma',
'Peter',
'Paula',
'Philippe',
'Patty',
'Phyllis',
'Polly',
'Quentin',
'Quincy',
'Roderick',
'Robert',
'Rebecca',
'Rene',
'Rose',
'Richard',
'Rita',
'Rafael',
'Ryan',
'Sebastian',
'Sally',
'Samuel',
'Samantha',
'Seth',
'Sharon',
'Stan',
'Sandy',
'Tanya',
'Theodore',
'Teresa',
'Tobias',
'Thomas',
'Tamara',
'Thaddeus',
'Ulga',
'Una',
'Ursula',
'Victor',
'Victoria',
'Virginia',
'Vincent',
'Valerie',
'Wendy',
'Wilfred',
'Wanda',
'Walter',
'Wilma',
'William',
'Xavier',
'Yvette',
'Yulia',
'Yasmine',
'Zach');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment