PHP Tutorial

PHP Data Types

Data Types

PHP includes several built-in types you will use in every program.

  • string
  • int
  • float
  • bool
  • array
  • object
$user = ["name" => "Alex", "score" => 95];
echo $user["name"];
Try it Yourself
Run this PHP example in your local environment or course sandbox.