123.456.789-01
show code
<?php
echo
preg_replace
(
'#(\d{3})(\d{3})(\d{3})(\d{2})#'
,
'$1.$2.$3-$4'
,
'12345678901'
);