Fix Html Entities

function fixHtmlEntities($text) {
    $entities = array(
        "&" => "&",
        "&lt;" => "<",
        "&gt;" => ">",
        "&quot;" => '"',
        "&#39;" => "'",
        "&apos;" => "'"
    );
    
    return strtr($text, $entities);
}

 

Bir cevap yazın

E-posta hesabınız yayımlanmayacak.