 |
|
ทำแบบบ้านๆ
Code (PHP)
<?php
$id="1579901233420";
$one=substr($id,0,1);
$onemore=$one."-";
$two=substr($id,1,4);
$twomore=$two."-";
$three=substr($id,5,5);
$threemore=$three."-";
$four=substr($id,10,2);
$fourmore=$four."-";
$five=substr($id,12,1);
$fivemore=$five;
$oneid=str_replace($one,$onemore,$one);
$twoid=str_replace($two,$twomore,$two);
$threeid=str_replace($three,$threemore,$three);
$fourid=str_replace($four,$fourmore,$four);
$fiveid=str_replace($five,$fivemore,$five);
$newid=$oneid.$twoid.$threeid.$fourid.$fiveid;;
echo $newid;
//1-5799-01233-42-0
?>
|
 |
 |
 |
 |
Date :
2011-10-12 14:00:26 |
By :
nimporn |
|
 |
 |
 |
 |
|
|
 |