1. Go to this page and download the library: Download bmt/noun-converter 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/ */
private $irregulars = [
'man' => 'men',
'woman' => 'women',
// Add more irregular nouns here
];
private $patterns = [
'/(s|ss|sh|ch|x|z)$/i' => '\1es', // Ends with s, ss, sh, ch, x, or z
'/([^aeiou])y$/i' => '\1ies', // Ends with a consonant + y
'/(o)$/i' => '\1es', // Ends with o
'/(f|fe)$/i' => 'ves', // Ends with f or fe
'/(us)$/i' => 'uses', // Ends with us
'/(is)$/i' => 'es', // Ends with is
];
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.