|
|
|
สามารถแบ่งเลขประจำตัวประชาชน จาก 1579901233420 เป็น 1 5799 01233 42 0 ได้ไหมครับ |
|
|
|
|
|
|
|
ทำแบบบ้านๆ
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 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
นำโค๊ดนี้ไปไว้ส่วนของ Head
Code (PHP)
<script type="text/javascript">
function autoTab(obj){
/* กำหนดรูปแบบข้อความโดยให้ _ แทนค่าอะไรก็ได้ แล้วตามด้วยเครื่องหมาย หรือสัญลักษณ์ที่ใช้แบ่ง เช่นกำหนดเป็น
1. รูปแบบเลขที่บัตรประชาชน เช่น 4-2215-54125-6-12 ก็สามารถกำหนดเป็น _-____-_____-_-__
2. รูปแบบเบอร์โทรศัพท์ เช่น 08-4521-6521 กำหนดเป็น __-____-____
3. รูปแบบกำหนดเวลา เช่น 12:45:30 กำหนดเป็น __:__:__
ตัวอย่างข้างล่างเป็นการกำหนดรูปแบบเลขบัตรประชาชน
*/
var pattern=new String("_-____-_____-__-_"); // กำหนดรูปแบบในนี้
var pattern_ex=new String("-"); // กำหนดสัญลักษณ์หรือเครื่องหมายที่ใช้แบ่งในนี้
var returnText=new String("");
var obj_l=obj.value.length;
var obj_l2=obj_l-1;
for(i=0;i<pattern.length;i++){
if(obj_l2==i && pattern.charAt(i+1)==pattern_ex){
returnText+=obj.value+pattern_ex;
obj.value=returnText;
}
}
if(obj_l>=pattern.length){
obj.value=obj.value.substr(0,pattern.length);
}
}
</script>
แบบ Form ไว้ส่วน Body
Code (PHP)
<!--แทรก onkeyup="autoTab(this)" ไว้ใน input text ที่ต้องการ-->
<form id="form1" name="form1" method="post" action="">
หมายเลขบัตรประชาชน : <input name="idcard" type="text" onkeyup="autoTab(this)" size="15">
</form>
|
|
|
|
|
Date :
2011-10-12 14:30:01 |
By :
o2fun.net |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|