Free cookie consent management tool by TermsFeed Generator PHP DataTypes | Amir Kamizi
AMIR KAMIZI
Home Blog Courses Books Newsletter Store Membership Buy me a coffee
PHP DataTypes

PHP DataTypes

Last Updated on Mar 21, 2023

What are the different data types in PHP?

  • Main datatypes in PHP are :
  • String
  • Integer
  • Float (also called double)
  • Boolean
  • Array
  • Object
  • NULL
  • Resource

Let’s go through them one by one.

String

It’s a sequence of characters. An string can be inside "(double quotes) or '(single quotes). The single and double quotes are not the same. They both define the string but the way they define it is different.

The " will be interpreted by php but the ' will be saved as is. So what does it mean?

Let’s say we have a variable x with the value 10

$x = 10;

'My number is $x' output is my number is $x

"My number is $x" php will interpret it and output is my number is 10

Integer

It’s a number without any decimal
Like 0,10,500,6254965
integers can be positive or negative

$x = 10;
$y = -10;

Float

It’s a number with decimals
Like 10.5,0.25,0.000625,15236.21,12.00
Floats can also be positive or negative

$x = 10.215;
$y = -10.215;

Boolean

TRUE or FALSE
Note that the words true and false are case-insensitive
So
True And TRUE and true are all the same

Array

It’s a list. You can have multiple values all saved inside one variable
You can define it in 2 ways:

$x = array(1,2,"hello",true);

or

Heavy check mark$x = [1,2,"hello",true];

As you can see from the example above an array can have values in different types without any problem

Object

It’s about object oriented programming (OOP) and in another day we’ll talk about it in details.

NULL

When it has no value assigned to it. It’s empty. It’s nothing. It’s null

Resource

it is a special data type that refers to any external resource. like file, database etc.

https://youtu.be/mREk56vgkxs

Conclusion

Now you know about different DataTypes in PHP.

I recommend you to open a PHP file and try defining different variables with different data types.

If you have any suggestions, questions, or opinions, please contact me. I’m looking forward to hearing from you!

Key takeaways

  • what are the main data types in PHP
  • explanation about those datatypes

 

Category: programming

Tags: #php

Join the Newsletter

Subscribe to get my latest content by email.

I won't send you spam. Unsubscribe at any time.

Related Posts

PHP Namespace
Mar 23, 2023 programming

PHP Namespace

Today we are going to talk about namespaces in PHP. Namespace is like putting the classes in a group. it helps you organize your code much better. It's a must-know topic for a PHP programmer. ...

7 Min Read Read More
PHP catch exceptions
Feb 14, 2023 programming

PHP catch exceptions

Today we are going to talk about catching exceptions in PHP. Most of the time in your script you might face some exceptions. So today we are going to learn how to catch those exceptions. ...

7 Min Read Read More
PHP array change key case
Feb 14, 2023 programming

PHP array change key case

Today we are going to talk about changing the case of the keys of an array in PHP. Sometimes you might change the case of the keys in your array. It's very easy to do that in PHP. ...

4 Min Read Read More
TypeScript Beginner to Advanced 2025: The Complete Guide
Jul 18, 2025 programming

TypeScript Beginner to Advanced 2025: The Complete Guide

TypeScript is no longer optional for serious JavaScript developers, it’s essential. Whether you're building modern front-end applications with React, scaling backend services with Node.js, or contributing to large open-source projects, TypeScript is the industry standard in 2025. ...

23 Min Read Read More

Recommended Courses

Introduction to Machine Learning in PHP

Introduction to Machine Learning in PHP

Learn to Build Different Machine Learning Models Easily ...

PHP Tutorial Beginner to Advanced

PHP Tutorial Beginner to Advanced

Learn everything you need to start a successful career as a PHP developer ...