Decoding special characters with PHP

165 Views Asked by At

How to convert special characters like this in PHP: Frédéric, Bérard, Jérémy

They are used in French names.

For HTML entities like & $eacute; è I use:

html_entity_decode($myvar, ENT_QUOTES, 'utf-8');

0

There are 0 best solutions below