-
-
Save bls1999/4112bf1aa13bb7cfb392fdddda90f677 to your computer and use it in GitHub Desktop.
list of first names formatted as a PHP array
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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