Inflector Helper
The Inflector Helper file contains functions that permit you to changeEnglish words to plural, singular, camel case, etc.
Loading this Helper
This helper is loaded using the following code:
- helper('inflector');
Available Functions
The following functions are available:
Parameters:
- $string (string) – Input stringReturns:A singular wordReturn type:string
Changes a plural word to singular. Example:
- echo singular('dogs'); // Prints 'dog'
Parameters:
- $string (string) – Input stringReturns:A plural wordReturn type:string
Changes a singular word to plural. Example:
- echo plural('dog'); // Prints 'dogs'
Parameters:
- $count (int) – Number of items
- $string (string) – Input stringReturns:A singular or plural phraseReturn type:string
Changes a word and its count to a phrase. Example:
- echo counted(3, 'dog'); // Prints '3 dogs'
Parameters:
- $string (string) – Input stringReturns:Camel case stringReturn type:string
Changes a string of words separated by spaces or underscores to camelcase. Example:
- echo camelize('my_dog_spot'); // Prints 'myDogSpot'
Parameters:
- $string (string) – Input stringReturns:Pascal case stringReturn type:string
Changes a string of words separated by spaces or underscores to Pascalcase, which is camel case with the first letter capitalized. Example:
- echo pascalize('my_dog_spot'); // Prints 'MyDogSpot'
Parameters:
- $string (string) – Input stringReturns:String containing underscores instead of spacesReturn type:string
Takes multiple words separated by spaces and underscores them.Example:
- echo underscore('my dog spot'); // Prints 'my_dog_spot'
Parameters:
- $string (string) – Input string
- $separator (string) – Input separatorReturns:Humanized stringReturn type:string
Takes multiple words separated by underscores and adds spaces betweenthem. Each word is capitalized.
Example:
- echo humanize('my_dog_spot'); // Prints 'My Dog Spot'
To use dashes instead of underscores:
- echo humanize('my-dog-spot', '-'); // Prints 'My Dog Spot'
Parameters:
- $word (string) – Input stringReturns:TRUE if the word is countable or FALSE if notReturn type:bool
Checks if the given word has a plural version. Example:
- is_pluralizable('equipment'); // Returns FALSE
Parameters:
- $string (string) – Input stringReturns:Dasherized stringReturn type:string
Replaces underscores with dashes in the string. Example:
- dasherize('hello_world'); // Returns 'hello-world'
Parameters:
- $integer (int) – The integer to determine the suffixReturns:Ordinal suffixReturn type:string
Returns the suffix that should be added to anumber to denote the position such as1st, 2nd, 3rd, 4th. Example:
- ordinal(1); // Returns 'st'
Parameters:
- $integer (int) – The integer to ordinalizeReturns:Ordinalized integerReturn type:string
Turns a number into an ordinal string usedto denote the position such as 1st, 2nd, 3rd, 4th.Example:
- ordinalize(1); // Returns '1st'