Person

 $🙃->person->name; // Len Veum
 $🙃->person->name_with_middle; // Miss Merrill Conroy Conroy
 $🙃->person->first_name; // Shaunna
 $🙃->person->middle_name; // Lemke
 $🙃->person->male_first_name; // Curtis
 $🙃->person->female_first_name; // Exie
 $🙃->person->last_name; // Lebsack
 $🙃->person->prefix; // Miss
 $🙃->person->suffix; // DVM

# name

Retrieves a random name for a person.

Usage

use Phonyland\Phony;

$🙃 = new Phony('en');

$🙃->person->name;

Sample Outputs

"Gayle Senger"
"Elijah Gleason"
"Alanna Beier"
"Delmy Jacobs"
"David Hand"

# name_with_middle

Retrieves a random name with middle name for a person.

Usage

use Phonyland\Phony;

$🙃 = new Phony('en');

$🙃->person->name_with_middle;

Sample Outputs

"Amalia Connelly Connelly"
"Ms. Callie Lang Lang"
"Ernesto Leannon Leannon DDS"
"Delcie Feest Feest"
"Miss Julius Monahan Monahan"

# first_name

Retrieves a random first name for a person.

Usage

use Phonyland\Phony;

$🙃 = new Phony('en');

$🙃->person->first_name;

Sample Outputs

"Letha"
"Stephnie"
"Yong"
"Evelia"
"Verena"

# middle_name

Retrieves a random middle name for a person.

Usage

use Phonyland\Phony;

$🙃 = new Phony('en');

$🙃->person->middle_name;

Sample Outputs

"Marquardt"
"Feil"
"Haag"
"Leffler"
"Hilpert"

# male_first_name

Retrieves a random male first name for a person.

Usage

use Phonyland\Phony;

$🙃 = new Phony('en');

$🙃->person->male_first_name;

Sample Outputs

"Dewayne"
"Wilburn"
"Derick"
"Jackie"
"Ronald"

# female_first_name

Retrieves a random female first name for a person.

Usage

use Phonyland\Phony;

$🙃 = new Phony('en');

$🙃->person->female_first_name;

Sample Outputs

"Princess"
"Mireya"
"Johnny"
"Taneka"
"Fallon"

# last_name

Retrieves a random last name for a person.

Usage

use Phonyland\Phony;

$🙃 = new Phony('en');

$🙃->person->last_name;

Sample Outputs

"Bode"
"Considine"
"Connelly"
"Shields"
"Rohan"

# prefix

Retrieves a random prefix for a person.

Usage

use Phonyland\Phony;

$🙃 = new Phony('en');

$🙃->person->prefix;

Sample Outputs

"Dr."
"Dr."
"Dr."
"Miss"
"Mrs."

# suffix

Retrieves a random suffix for a person.

Usage

use Phonyland\Phony;

$🙃 = new Phony('en');

$🙃->person->suffix;

Sample Outputs

"Jr."
"IV"
"II"
"II"
"Sr."