Determine the indefinite article of an English term.
An indefinite article is the word that comes before nouns or noun equivalents in English, such as "a" or "an". If the word starts with a consonant sound, the article used should be "a" — for example "banana" becomes "a banana". If the word starts with a vowel sound, the article used should be "an" — for example "apple" becomes "an apple".
This is not as simple as checking whether the first character of the word is a vowel or consonant as that does not determine the sound pronounced when speaking the word.
This is a port of Eamon Nerbonne's original solution for the problem.
You can install the package with Composer using the following command:
composer require imliam/php-indefinite-article:^1.0.0
$word = new ImLiam\IndefiniteArticle\IndefiniteArticle('apple');
echo $word->parse();
// "an apple"
echo $word->article();
// "an"
composer test
Please see the changelog file for more information on what has changed recently.
Please see the upgrading file for details on upgrading from previous versions.
Please see the contributing file and code of conduct for details on contributing to the project.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
- Liam Hammett
- Eamon Nerbonne for the original solution
- All Contributors
The MIT License (MIT). Please see the license file for more information.