Převést znaky s diakritikou - Triky CSS

Anonim

Například pokud chcete použít řetězec jako součást adresy URL, ale potřebujete zajistit jeho bezpečné použití pro tento druh použití.

function replace_accents($str) ( $str = htmlentities($str, ENT_COMPAT, "UTF-8"); $str = preg_replace('/&((a-zA-Z))(uml|acute|grave|circ|tilde);/','$1',$str); return html_entity_decode($str); )