Skip to content

Instantly share code, notes, and snippets.

@lucablackwell
Last active November 29, 2022 09:53
Show Gist options
  • Save lucablackwell/c99dd7f0ef54ea32108fc1e922a04341 to your computer and use it in GitHub Desktop.
Save lucablackwell/c99dd7f0ef54ea32108fc1e922a04341 to your computer and use it in GitHub Desktop.
<?php
$imey = [
'blimey',
'climey',
'chimey',
'dimey',
'flimey',
'glimey',
'himey',
'jimey',
'klimey',
'limey',
'mimey',
'nimey',
'plimey',
'phimey',
'quimey',
'rimey',
'simey',
'shimey',
'slimey',
'timey',
'thimey',
'vimey',
'wimey',
'ximey',
'yimey',
'zimey'
];
$charlie = [
'barlie',
'carlie',
'charlie',
'darlie',
'farlie',
'garlie',
'harlie',
'jarlie',
'karlie',
'larlie',
'marlie',
'narlie',
'parlie',
'pharlie',
'quarlie',
'rarlie',
'sarlie',
'sharlie',
'slarlie',
'tarlie',
'tharlie',
'varlie',
'warlie',
'xarlie',
'yarlie',
'zarlie'
];
$ucking = [
'bucking',
'cucking',
'chucking',
'ducking',
'gucking',
'hucking',
'jucking',
'kucking',
'lucking',
'mucking',
'nucking',
'pucking',
'phucking',
'qucking',
'rucking',
'sucking',
'shucking',
'slucking',
'tucking',
'thucking',
'vucking',
'wucking',
'xucking',
'yucking',
'zucking'
];
$iders = [
'biders',
'ciders',
'chiders',
'diders',
'fiders',
'giders',
'hiders',
'jiders',
'kiders',
'liders',
'miders',
'niders',
'piders',
'phiders',
'quiders',
'riders',
'siders',
'shiders',
'sliders',
'tiders',
'thiders',
'viders',
'widers',
'xiders',
'yiders',
'ziders'
];
$blnum = array_rand($imey);
$fnum = array_rand($ucking);
echo $imey[$blnum] . ' ' . $charlie[$blnum] . ' ' . $ucking[$fnum] . ' ' . $iders[$fnum] . "\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment