Uwuify any sentence or word with various options.
composer require nemo9l/uwuify
composer install
$uwuifier = new Nemo9l\Uwuify\Uwuify();
$result = $uwuifier->uwuify('Uwuify any sentence or word with various options.');
// (float $regexModifier = null, float $exclamationModifier = null, array $spaceModifier = [])
$uwuifier = new Nemo9l\Uwuify\Uwuify(0.75, 0.75, [ 'faces' => 0.025, 'actions' => 0.025, 'stutter' => 0.05 ]);
$result = $uwuifier->uwuify('Uwuify any sentence or word with various options.');
$regexModifier
property affects what percentage of regex(defined at static $_regexMaps
) replacements will be applied to the sentence.
Default value is 1.0
which means 100% of regex replacements will be applied.
$exclamationModifier
property affects what percentage of exclamation marks(defined at static $_exclamations
) will be replaced.
$spaceModifier
property affects what percentage of spaces will be replaced with various options.
It can be an array with following keys:
faces
- affects what percentage of spaces will be replaced with faces(defined atstatic $_faces
).actions
- affects what percentage of spaces will be replaced with actions(defined atstatic $_actions
).stutter
- affects what percentage of spaces will have some appends to make it stutter.
This project is licensed under the MIT License - see the LICENSE file for details