2017 © Pedro Peláez
 

library indefinite-article

Grammatical utility class for prepending the appropriate indefinite article to a word (a/an)

image

spenserhale/indefinite-article

Grammatical utility class for prepending the appropriate indefinite article to a word (a/an)

  • Thursday, June 14, 2018
  • by spenserhale
  • Repository
  • 1 Watchers
  • 0 Stars
  • 11 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 8 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

PHP Indefinite Article Library

PHP implementation of the Lingua::EN::Inflect Perl module's A() and AN() subroutines, originally ported to PHP by Niko Salminen, and then by make into composer package by Zach Flower., (*1)

Installation

Via Composer

Require the library and update via Composer:, (*2)

composer require spenserhale/indefinite-article
composer update

Manually

Download the latest release, extract into a directory called indefinite-article, and include the library at the beginning of your script:, (*3)

include_once('./indefinite-articles/src/IndefiniteArticle.php');
use \IndefiniteArticle\IndefiniteArticle;

Usage

The PHP Indefinite Article Library is used to determine the proper indefinite article to use before a word ('a' or 'an'). To do so, simply call the A() method with your word or phrase:, (*4)

IndefiniteArticle::A('elephant')

The method will return a string prefixed with the appropriate indefinite article:, (*5)

an elephant

Original Perl module Copyright © 1997-2009 Damian Conway; Original PHP port Copyright © 2012 Niko Salminen; Original library copyright © 2016 Zachary Flower; Current library copyright © 2018 Spenser Hale; Code released under the BSD license., (*6)

The Versions

14/06 2018

dev-master

9999999-dev

Grammatical utility class for prepending the appropriate indefinite article to a word (a/an)

  Sources   Download

BSD-2-Clause

The Requires

  • php >= 7.2.2

 

The Development Requires

by Spenser Hale

php text grammar

14/06 2018

v1.0.1

1.0.1.0

Grammatical utility class for prepending the appropriate indefinite article to a word (a/an)

  Sources   Download

BSD-2-Clause

The Requires

  • php >= 7.2.2

 

The Development Requires

by Spenser Hale

php text grammar

14/06 2018

v1.0.0

1.0.0.0

Library for programmatically determining the appropriate indefinite article to use (a/an)

  Sources   Download

BSD-2-Clause

The Requires

  • php >= 7.2.2

 

The Development Requires

by Spenser Hale

01/09 2016

v0.1.0

0.1.0.0

Library for programmatically determining the appropriate indefinite article to use (a/an)

  Sources   Download

BSD

The Requires

  • php >= 5.3.0

 

The Development Requires

by Zachary Flower