mhlavac/diacritics-remover

This package is abandoned and no longer maintained. The author suggests using the symfony/string package instead.

Diacritics Remover

Installs: 13 691

Dependents: 0

Suggesters: 0

Security: 0

Stars: 10

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/mhlavac/diacritics-remover

1.0.1 2015-08-28 04:33 UTC

This package is not auto-updated.

Last update: 2020-01-12 17:49:54 UTC


README

Build Status

removes diacritics from strings

Example

$original = 'Čokl běžel po džemu'

$remover = new DiacriticsRemover()
$output = $remover->parse($original);

echo $output; // Cokl bezel po dzemu

Installation

via composer: composer require mhlavac/diacritics-remover