|
|
|
ดูโค๊ดเช็ดเบอร์โทรศัพท์ให้หน่อยคะ พอกรอกข้อมูลจากฟอร์ม มันแจ้งให้ใส่เบอร์โทรให้ถูกต้องด้วย ทั้งที่ใส่ข้อมูลถูกแล้ว |
|
|
|
|
|
|
|
function newPhone($phoneNum) {
$last = substr($phoneNum, -3, 1);
$cNum = strlen($phoneNum) -3;
if ($last == "-") {
$strPhone = substr($phoneNum, 0, $cNum);
$lastNum = substr($phoneNum, $cNum, 3);
}
else {
$strPhone = $phoneNum;
}
$ex = explode("-", $strPhone);
$strPhone = implode("", $ex);
$phoneNum = $strPhone.$lastNum;
$phoneNum = trim($phoneNum);
$lenNum = strlen($phoneNum);
if ($lenNum == 7) {
$phoneNum = "02".$phoneNum;
}
elseif ($lenNum == 8) {
$phoneNum = sprintf("%09d", $phoneNum);
}
if (substr($phoneNum, 0, 2) == "00") {
$phoneNum = "- เบอร์ผิด -";
}
return $phoneNum;
}
ลองๆๆเอาไปดูนะคับพี่ว่าได้นะ อิอิอิ
|
|
|
|
|
Date :
23 ธ.ค. 2551 15:18:31 |
By :
hhrung1983 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณคะ เดี๋ยวจะลองไปทำดูนะคะ
|
|
|
|
|
Date :
26 ธ.ค. 2551 14:13:21 |
By :
beekannikar |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|