bastian/inflector

一个将单数名词转换为复数形式及反向转换的全面包。

1.0 2014-04-12 11:44 UTC

This package is not auto-updated.

Last update: 2024-09-28 14:37:57 UTC


README

一个用于将英语单词从单数转换为复数及其反向转换的包。

用法

Inflector\Inflector::plural('Tree'); // Trees

Inflector\Inflector::singular('Cakes'); // Cake

Inflector\Inflector::plural('Fish'); // Fish

提供者可用于检索不常见的不规则单词。

Inflector\Inflector::setProvider(new Inflector\JsonProvider);

提供者必须实现Inflector\ProviderInterface