在 PHP 中檢查數字字元

Habdul Hazeez 2023年1月30日
  1. 使用 ctype_digit 檢查 PHP 中的數字字元
  2. 在 PHP 中使用正規表示式檢查數字字元
  3. 在 PHP 中檢查排除指數符號的數字字元
  4. 使用 filter_var 函式檢查 PHP 中的數字字元
在 PHP 中檢查數字字元

本教程將討論在 PHP 中檢查數字字元的不同方法。我們將在 PHP 中使用正規表示式和內建函式。

我們將使用的函式是 ctype_digitpreg_matchstrposis_numericfilter_var。這些方法很有用,因為它們允許你排除一些非數字字元。

使用 ctype_digit 檢查 PHP 中的數字字元

ctype_digit 函式接受文字字串並檢查所有字串字元是否都是數字。ctype_digit 不會將指數字符視為數字。

例子:

<?php
    $number_with_exponent = '53e10';

    if (ctype_digit('$number_with_exponent')) {
        echo $number_with_exponent . ' contains numerical characters';
    } else {
        echo $number_with_exponent . ' contains non-numeric characters';
    }
?>

輸出:

53e10 contains non-numeric characters

該函式將返回 false,因為字串具有指數字符。

在 PHP 中使用正規表示式檢查數字字元

正規表示式可以檢查字串中的字元是否都是數字。你必須做的第一件事是設定一個專門匹配數字字元的匹配模式。

在程式碼塊中,我們使用 PHP preg_match 函式設定了正規表示式匹配模式,然後我們將要檢查的字串作為第二個引數傳遞給 preg_match 函式。

例子:

<?php
    $number_with_exponent = '53e10';

    if (preg_match("/^\-?[0-9]*\.?[0-9]+\z/", $number_with_exponent)) {
        echo $number_with_exponent . ' contains numerical characters';
    } else {
        echo $number_with_exponent . ' contains non-numeric characters';
    }
?>

輸出:

53e10 contains non-numeric characters

在 PHP 中檢查排除指數符號的數字字元

如果你將 if 語句與 is_numeric 函式一起使用,你會發現這種方法很有用。在包含指數符號的字串上使用函式 is_numeric 時,該函式將返回 true,因為 PHP 認為指數符號是有效的數字字元。

例子:

<?php
    $number_with_exponent = '53e10';
    $check_string_position = strpos($number_with_exponent, 'e');
    $check_is_numeric = is_numeric($number_with_exponent);

    if ($check_string_position === false && $check_is_numeric) {
        echo $number_with_exponent . ' contains numerical characters';
    } else {
        echo $number_with_exponent . ' contains non-numeric characters';
    }
?>

輸出:

53e10 contains non-numeric characters

使用 filter_var 函式檢查 PHP 中的數字字元

PHP filter_var 函式將根據過濾器過濾變數。你將此過濾器作為第二個引數提供給 filter_var 函式。

要檢查數字字元,你將使用名為 FILTER_VALIDATE_INT 的過濾器。

例子:

<?php
    $test_numbers = ['53e10', '3.5', '2x3', '200'];

    foreach ($test_numbers as $value) {
        $check_integer = filter_var($value, FILTER_VALIDATE_INT);
        if ($check_integer === false) {
            echo $value . ' contains non-numeric characters' . "<br/>";
        } else {
            echo $value . ' contains numerical characters' . "<br/>";
        }
    }
?>

輸出:

53e10 contains non-numeric characters <br />
3.5 contains non-numeric characters <br />
2x3 contains non-numeric characters <br />
200 contains numerical characters <br />
作者: Habdul Hazeez
Habdul Hazeez avatar Habdul Hazeez avatar

Habdul Hazeez is a technical writer with amazing research skills. He can connect the dots, and make sense of data that are scattered across different media.

LinkedIn