驗證 PHP 中的整數資料類型
在 PHP 中處理數字資料時,確定變數是否表示整數至關重要。為了解決這個問題,通常會使用 is_int() 函數。然而,它的行為有時可能是意想不到的,導致混亂。
為了修正這個問題,我們引入了驗證整數資料型別的替代方法:
FILTER_VALIDATE_INT
使用此方法,您可以有效地評估變數是否代表整數:
<code class="php">if (filter_var($variable, FILTER_VALIDATE_INT) === false) { // Variable is not an integer }</code>
這種方法可以準確處理整數、浮點數,甚至字串。
鑄造比較
透過將變數轉換為整數並將其與其原始形式(字串)進行比較,可以確定其整數性質:
<code class="php">if (strval($variable) !== strval(intval($variable))) { // Variable is not an integer }</code>
此方法確保僅真整數被視為整數。
CTYPE_DIGIT
要將驗證限制為非負整數(0 或更大),您可以使用ctype_digit() 函數:
<code class="php">if (!ctype_digit(strval($variable))) { // Variable is not an integer }</code>
正規表示式
使用正規表示式提供了另一個選擇驗證整數:<code class="php">if (!preg_match('/^-?\d+$/', $variable)) { // Variable is not an integer }</code>
以上是如何在 PHP 中驗證整數資料型態?的詳細內容。更多資訊請關注PHP中文網其他相關文章!