檢測資料類型php函數集

來源:互聯網
上載者:User

檢測資料類型php教程函數集

檢測資料類型即對資料類型進行檢測,判斷所檢測類型是否屬於檢測類型,符合則返回真,否則返回假。檢測資料類型定義如下:

is_bool

是否為布爾類型,例,is_bool(srue)  is_bool(false)


is_string

是否為字串型,例,is_string(‘string’)  is_string(1234)


is_float/double

是否為浮點型,例,is_float(3.1415)  is_float(‘3.1415’)


is_integer/int

是否為整型,例,is_integer(34)  is_integer(‘34’)


is_null

是否為空白值,例,is_null(null)


is_array

是否為數組,例,is_array($arr)


is_object

是否為一個對象,例,is_object($obj)


is_numeric

是否為數字或由數字組成的字串,例,is_numeric(‘5’)  is_numeric(‘bcc110’)

 

樣本

<?php

$boo="1234567890";

if(is_numeric($boo))

echo "變數boo屬由數字組成的字串類型:".$boo;

else

echo"無法判斷";

?>

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.