在 PHP 中驗證電話號碼

Sheeraz Gul 2023年1月30日
  1. 在 PHP 中使用 regex 正規表示式驗證電話號碼
  2. 在 PHP 中使用 filter 方法驗證電話號碼
在 PHP 中驗證電話號碼

PHP 有兩種驗證電話號碼的方法,一種是正規表示式 regex,另一種是 filter 方法。我們可以使用 regex 設定模板並根據該模板驗證電話號碼,但 filter 只會排除不需要的字元。

本教程演示瞭如何在 PHP 中驗證不同的電話號碼。

在 PHP 中使用 regex 正規表示式驗證電話號碼

preg_match() 是 PHP 中的一個內建函式,用於檢查資料是否符合給定的格式;它返回一個布林值。

例子:

<?php
function validate_number($phone_number){
if(preg_match('/^[0-9]{11}+$/', $phone_number)) {
    // the format /^[0-9]{11}+$/ will check for phone number with 11 digits and only numbers
    echo "Phone Number is Valid <br>";
}   else{
    echo "Enter Phone Number with correct format <br>";
    }
}
//valid phone number with 11 digits
validate_number("03333333333");
//Invalid phone number with 13 digits
validate_number("0333333333333");
// 11 digits number with invalid charachters.
validate_number("03333333-33");
?>

上面的程式碼只會驗證一個只有 11 位數字的電話號碼。

輸出:

Phone Number is Valid
Enter Phone Number with correct format
Enter Phone Number with correct format

下一個示例顯示如何驗證以 - 開頭幷包含特殊字元和國家程式碼的電話號碼。

例子:

<?php
function validate_number($phone_number){
if(preg_match('/^[0-9]{4}-[0-9]{7}$/', $phone_number)){
    // the format /^[0-9]{4}-[0-9]{7}$/ will check for phone number with 11 digits with a - after first 4 digits.
    echo "Phone Number is Valid <br>";
}   else{
    echo "Enter Phone Number with correct format <br>";
   }
}
//Valid phone number with 11 digits and a -
validate_number("0333-3333333");
//Invalid phone number with 13 digits and -
validate_number("0333-333333333");
//Invaild  11 digits number with two -.
validate_number("0333-3333-33");
echo "<br>";

function validate_country_number($phone_number){
if(preg_match('/^\+[0-9]{1,2}-[0-9]{3}-[0-9]{7}$/', $phone_number)){
    // the format /^\+[0-9]{1,2}-[0-9]{3}-[0-9]{7}$/ will check for phone number with country codes, 11 or 12 digits, + and -
    echo "Phone Number is Valid with country code <br>";
}   else{
    echo "Enter Phone Number with correct format <br>";
   }
}
//Valid phone number with 12 digits + and -. According to the format given in the function for country code.
validate_country_number("+92-333-3333333");
//Invalid phone number with with country code
validate_country_number("+92-333333333333");
//Invaild  Number without country code.
validate_country_number("03333333333");
?>

輸出:

Phone Number is Valid
Enter Phone Number with correct format
Enter Phone Number with correct format

Phone Number is Valid with country code
Enter Phone Number with correct format
Enter Phone Number with correct format

這裡應該提到每個國家都有自己的電話號碼格式。任何格式都可以設定 preg_match 正規表示式函式來驗證電話號碼。

在 PHP 中使用 filter 方法驗證電話號碼

PHP 中的過濾器用於驗證和清理資料輸入。過濾器還會更正格式並輸出正確的電話號碼。

例子:

<?php
function validate_number($phone_number){
$valid_phone_number = filter_var($phone_number, FILTER_SANITIZE_NUMBER_INT);
echo $valid_phone_number."<br>";
}
//valid phone numbers
validate_number("03333333333");
validate_number("0333-3333333");
validate_number("+92-333-3333333");
//invalid phone numbers
validate_number("03333333&333");
validate_number("0333-33*33333");
validate_number("+92-333-333##3333");
?>

上面的程式碼使用內建函式 filter_var 和常量 FILTER_SANITIZE_NUMBER_INT,它將檢查帶有+- 符號的整數。如果它檢測到任何其他字元,它將排除它們並返回正確的電話號碼。

輸出:

03333333333
0333-3333333
+92-333-3333333
03333333333
0333-3333333
+92-333-3333333

這種方法的缺點是我們不能為電話號碼設定長度,如果+- 在號碼中的錯誤位置,它不會更正它們。當我們錯誤地輸入其他字元時,可以使用過濾方法,排除它們。

作者: Sheeraz Gul
Sheeraz Gul avatar Sheeraz Gul avatar

Sheeraz is a Doctorate fellow in Computer Science at Northwestern Polytechnical University, Xian, China. He has 7 years of Software Development experience in AI, Web, Database, and Desktop technologies. He writes tutorials in Java, PHP, Python, GoLang, R, etc., to help beginners learn the field of Computer Science.

LinkedIn Facebook