fork download
  1. <?php
  2.  
  3. function nomeProprio($input) {
  4. return preg_replace('/\sd(\ws?)\s/i', ' d$1 ' , mb_convert_case($input, MB_CASE_TITLE, "UTF-8"));
  5. }
  6.  
  7. $cidades = [
  8. 'PORTO DE GALINHAS',
  9. 'SÃO JOÃO DA ALIANÇA',
  10. 'VITÓRIA DA CONQUISTA',
  11. 'ABADIA DE GOIÁS'
  12. ];
  13.  
  14. foreach($cidades as $cidade) {
  15. echo nomeProprio($cidade);
  16. echo "\n";
  17. }
Success #stdin #stdout 0.02s 23880KB
stdin
Standard input is empty
stdout
Porto de Galinhas
São João da Aliança
Vitória da Conquista
Abadia de Goiás