PHP Tutorial

A web server programming language.

PHP Data Types

PHP Data Types

Variables can store data of different types, and different data types can do different things.

PHP supports the following data types:

  • String
  • Integer
  • Float (floating point numbers - also called double)
  • Boolean
  • Array
  • Object
  • NULL
  • Resource

Use the var_dump() function to return the data type and value.

Try It Yourself

Edit the code below and click Run to see the result live.

Source Code
Result
Topics