Converter Strings com Acentuação (mb_internal_encoding)


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. /**
  2.  * Função para converter strings com acentos
  3.  * PHP 5
  4. */
  5. function acento($string,$tamanho){
  6. if($tamanho == 'UPPER') mb_strtoupper($string);
  7. elseif ($tamanho == 'LOWER') mb_strtolower($string);
  8. return $string;
  9. }
  10.  
  11. $exemplo1 = "notícias";
  12. echo acento($exemplo1, 'UPPER') . PHP_EOL;
  13.  
  14. $exemplo2 = "NOTÍCIAS";
  15. echo acento($exemplo2, 'LOWER') . PHP_EOL;

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.