Inflector 辅助函数

Inflector 辅助函数文件包含了一些帮助你将 英语 单词转换为单复数或驼峰格式等等的函数。

加载辅助函数

该辅助函数通过下面的代码加载:

  1. $this->load->helper('inflector');

可用函数

该辅助函数有下列可用函数:

  • singular($str)

参数:

  • $str (string) — Input string返回:A singular word返回类型:string

将一个单词的复数形式变为单数形式。例如:

  1. echo singular('dogs'); // Prints 'dog'
  • plural($str)

参数:

  • $str (string) — Input string返回:A plural word返回类型:string

将一个单词的单数形式变为复数形式。例如:

  1. echo plural('dog'); // Prints 'dogs'
  • camelize($str)

参数:

  • $str (string) — Input string返回:Camelized string返回类型:string

将一个以空格或下划线分隔的单词转换为驼峰格式。例如:

  1. echo camelize('my_dog_spot'); // Prints 'myDogSpot'
  • underscore($str)

参数:

  • $str (string) — Input string返回:String containing underscores instead of spaces返回类型:string

将以空格分隔的多个单词转换为下划线分隔格式。例如:

  1. echo underscore('my dog spot'); // Prints 'my_dog_spot'
  • humanize($str[, $separator = ''_])

参数:

  • $str (string) — Input string
  • $separator (string) — Input separator返回:Humanized string返回类型:string

将以下划线分隔的多个单词转换为以空格分隔,并且每个单词以大写开头。例如:

  1. echo humanize('my_dog_spot'); // Prints 'My Dog Spot'

如果单词是以连接符分割的,第二个参数传入连接符:

  1. echo humanize('my-dog-spot', '-'); // Prints 'My Dog Spot'
  • iscountable($word_)

参数:

  • $word (string) — Input string返回:TRUE if the word is countable or FALSE if not返回类型:bool

判断某个单词是否有复数形式。例如:

  1. is_countable('equipment'); // Returns FALSE