Created
May 6, 2016 10:35
-
-
Save jeroenvisser101/c56f1ac6f36435e06bdba5dcd5cc2991 to your computer and use it in GitHub Desktop.
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 | |
use Invitious\Invitious; | |
// Basic code | |
echo Invitious::generate(Invitious::ENGLISH_WORD_GENERATOR); | |
// Custom length | |
echo Invitious::generate(Invitious::ENGLISH_WORD_GENERATOR, 4); | |
// Custom separator | |
echo Invitious::generate(Invitious::ENGLISH_WORD_GENERATOR, 4, '_'); | |
// With a key | |
echo Invitious::generate(Invitious::ENGLISH_WORD_GENERATOR, 4, '_', 'hello'); | |
// With a custom key length | |
echo Invitious::generate(Invitious::ENGLISH_WORD_GENERATOR, 4, '_', 'hello', 10); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment