日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > php >内容正文

php

gettype_PHP gettype()函数与示例

發布時間:2023/12/1 php 28 豆豆
生活随笔 收集整理的這篇文章主要介紹了 gettype_PHP gettype()函数与示例 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

gettype

PHP gettype()函數 (PHP gettype() function)

In PHP, we have a library function gettype() to identify the type of data. The function is primarily used to sanity check the type of data being input in a variable. The function can identify the data into the following data types:

在PHP中,我們有一個庫函數gettype()來標識data的類型 。 該功能主要用于完整性檢查變量中輸入的數據類型。 該函數可以將數據識別為以下數據類型:

  • Integer

    整數

  • Double

  • String

  • Array

    數組

  • Object

    目的

  • Boolean

    布爾型

  • Resource

    資源資源

  • Null

    空值

  • Unknown

    未知

Syntax:

句法:

gettype($var)

Where, $var is a variable containing data that needs to be checked.

其中, $ var是包含需要檢查的數據的變量。

Example 1:

范例1:

<?php // Creating variables with random datatype $var1 = 1; $var2 = 1.1; $var3 = NULL; $var4 = "example"; $var5 = false;// using gettype() function to // get the data type of the variable echo gettype($var1)."\n"; echo gettype($var2)."\n"; echo gettype($var3)."\n"; echo gettype($var4)."\n"; echo gettype($var5)."\n"; ?>

Output

輸出量

integer double NULL string boolean

Example 2:

范例2:

<?php// creating an array with random datatypes$arr = array(21, 1.99, new stdClass, "hello, World", false);// getting the type of each element of array// foreach is used to initialize array // as independent valuesforeach ($arr as $value) {// getting and printing the typeecho gettype($value), "\n";} ?>

Output

輸出量

integer double object string boolean

翻譯自: https://www.includehelp.com/php/gettype-function-with-example.aspx

gettype

總結

以上是生活随笔為你收集整理的gettype_PHP gettype()函数与示例的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。