PHP Tutorial

A web server programming language.

PHP Numbers

PHP Numbers

One thing to notice about PHP is that it provides automatic data type conversion. So, if you assign an integer value to a variable, the type of that variable will automatically be an integer.

Number Checking Functions:

  • is_int() - Check if variable is integer
  • is_float() - Check if variable is float
  • is_numeric() - Check if variable is numeric or a numeric string

Try It Yourself

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

Source Code
Result
Topics