Skip to content

Instantly share code, notes, and snippets.

@caferrari
Created July 15, 2013 19:20
Show Gist options
  • Save caferrari/6002619 to your computer and use it in GitHub Desktop.
Save caferrari/6002619 to your computer and use it in GitHub Desktop.
preg_replace_cpf
<?php
// resposta: https://www.facebook.com/groups/nao.tem.biscoito/permalink/10153103467920160/
$cpf = preg_replace('@^(\d{3})(\d{3})(\d{3})(\d{2})$@', '$1.$2.$3-$4', '12345678900');
echo $cpf;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment