mhlavac/diacritics-remover

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

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