Exemple #1
0
 public static function nomeParaAbnt($nome)
 {
     $arrNome = explode(" ", $nome);
     $nome_abnt = Livro::fullUpper($arrNome[count($arrNome) - 1]) . ", ";
     for ($i = 0; $i < count($arrNome) - 1; $i++) {
         $nome_abnt .= substr($arrNome[$i], 0, 1) . '.';
     }
     return $nome_abnt;
 }