PHP code example of bmt / noun-converter

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/ */

    

bmt / noun-converter example snippets


use Bmt\NounConverter\NounConverter;

$converter = new NounConverter();

$plural = $converter->convertToPlural('dog');
echo $plural; // Outputs "dogs"

$plural = $converter->convertToPlural('mouse');
echo $plural; // Outputs "mice"

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
];