Skip to content

Instantly share code, notes, and snippets.

@jonataa
Last active August 29, 2015 14:06
Show Gist options
  • Select an option

  • Save jonataa/2d0577f051574d100444 to your computer and use it in GitHub Desktop.

Select an option

Save jonataa/2d0577f051574d100444 to your computer and use it in GitHub Desktop.
Formatando CPF e CNPJ
<?php
$cpf = '76554323455';
echo strtr('012.345.678-910', str_split($cpf)); //765.543.234-55
$cnpj = '09876456000178';
echo strtr('01.234.567/891011-1213', str_split($cnpj)); ///09.876.456/0001-78
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment