Heim >Backend-Entwicklung >PHP-Tutorial >PHP 数据类型_PHP教程

PHP 数据类型_PHP教程

WBOY
WBOYOriginal
2016-07-15 13:22:081090Durchsuche

PHP 数据类型

PHP 支持八种原始类型(type)。

四种标量类型:

string(字符串)
  • integer(整型)
  • float(浮点型,也作 double )
  • boolean(布尔型)
  • 两种复合类型:

    array(数组)
  • object(对象)
  • 两种特殊类型:

    resource(资源)
  • NULL(空)
  • 查看变量类型

    通过 gettype() 函数可以方便的查看某个变量的类型:

    提示

    由于历史原因,如果是 float 类型数据,gettype() 函数返回的是 double,而不是 float 。
  • 如果想查看某个表达式的值和类型,请使用用 var_dump() 函数。
  • 判断变量类型

    如果想通过判断变量类型来确定下一步逻辑动作,不要使用 gettype() ,而使用 is_type 系列函数:


    www.bkjia.comtruehttp://www.bkjia.com/PHPjc/447016.htmlTechArticlePHP 数据类型 PHP 支持八种原始类型(type)。 四种标量类型: string(字符串) integer(整型) float(浮点型,也作 double ) boolean(布尔型)...
    Stellungnahme:
    Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn