PHP code example of probablyrational / random-name-generator

1. Go to this page and download the library: Download probablyrational/random-name-generator library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

probablyrational / random-name-generator example snippets


$generator = \ProbablyRational\RandomNameGenerator\All::create();
echo $generator->getName();

$generator = new \ProbablyRational\RandomNameGenerator\All(
    [
        new \ProbablyRational\RandomNameGenerator\Alliteration(1),
        new \ProbablyRational\RandomNameGenerator\Vgng(1),
        new \ProbablyRational\RandomNameGenerator\Sketch(1)
    ]
);

$generator = new \ProbablyRational\RandomNameGenerator\Vgng(1);
echo $generator->getName();

$generator = new \ProbablyRational\RandomNameGenerator\Alliteration(1);
echo $generator->getName();

$generator = new \ProbablyRational\RandomNameGenerator\Sketch(1);
echo $generator->getName();