Skip to content

jkbnerad/inflection

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Inflection for czech words

Class for basic inflection of czech words. For example names or surnames.

Usage

Basic usage is add to your project via composer.

$name = 'František';
$inflected = (new Inflection())->inflect($name, true);
print "Dobrý den " . $inflected[5]; //Dobrý den Františku

or

require_one inflection/src/Inflection.php
$name = 'František';
$inflected = (new Inflection())->inflect($name, true);
print "Dobrý den " . $inflected[5]; //Dobrý den Františku

Třída je postavena na základě práce Pavla Sedláka, která byla zveřejněna pod GNU Lesser General Public License. Z tohoto důvodu jsme se rozhodli ji upravit, zveřejnit a umožnit tak její využití, vylepšení a rozšíření dalším lidem.

About

Inflection of czech words (not only names)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%