Pplware

PHP é à quinta-feira – Conversão condicional para UTF-8

Boas. A nível de direitos sobre o código, devo-vos remeter para o meu primeiro artigo desta rubrica.

Hoje trago-vos duas funções que juntas permitem converter uma string para UTF-8 caso ainda não o seja.

A função de verificação de utf-8 is_utf8() foi retirada daqui:

function is_utf8($str)
{
    $c=0; $b=0;
    $bits=0;
    $len=strlen($str);
    for($i=0; $i<$len; $i++)
    {
      $c=ord($str[$i]);
      if($c > 128)
      {
      if(($c >= 254)) return false;
      elseif($c >= 252) $bits=6;
      elseif($c >= 248) $bits=5;
      elseif($c >= 240) $bits=4;
      elseif($c >= 224) $bits=3;
      elseif($c >= 192) $bits=2;
      else return false;
      if(($i+$bits) > $len) return false;
      while($bits > 1)
      {
        $i++;
        $b=ord($str[$i]);
        if($b < 128 || $b > 191) return false;
        $bits--;
      }
    }
  }
  return true;
}

function utf8($string)
{
  if (is_utf8($string))
  {
    return $string;
  } else {
    return utf8_encode($string);
  }
}
?>

Modo de utilização:

Converter String ISO-8859-1 (normal latino) $a para UTF-8

<?php
$a = "áêõ€Äíç";
echo utf8($a);
?>

Qualquer dúvida ou sugestão, estão completamente à vontade.

Exit mobile version