Skip to content

Instantly share code, notes, and snippets.

@luisdalmolin
Created February 10, 2012 15:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luisdalmolin/1790132 to your computer and use it in GitHub Desktop.
Save luisdalmolin/1790132 to your computer and use it in GitHub Desktop.
<?php
$texto = 'ESTA É UMA FRASE COM ACENTUAÇÃO';
echo strtolower( $texto ); // escreve: 'esta �� uma frase com acentua����o'
echo mb_strtolower( $texto, 'UTF-8' ); // escreve: 'esta é uma frase com acentuação'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment