Summary of eight basic data types in PHP_PHP tutorial
Four scalar types:
- boolean (Boolean type)
- integer (integer type)
- float (Floating point type, also called double)
- string (string)
Two compound types:
- array (array)
- object (object)
Finally there are two special types:
- resource (resource)
- NULL (NULL)
To ensure code readability, this manual also introduces some pseudo-types:
- mixed
- number
- callback
and pseudo variables $....
You may also read some references to the "double" type. In fact, double and float are the same, and for some historical reasons, these two names existed at the same time.
The type of a variable is usually not set by the programmer, rather it is determined by PHP at runtime based on the context in which the variable is used.
Note: If you want to check the value and type of an expression, use var_dump().
If you just want to get a human-readable representation of the type for debugging, use gettype(). To check a certain type, do not use gettype(), but use the is_type function. Here are some examples:
$a_bool = TRUE; / / a boolean
$a_str = "foo"; // a string
$a_str2 = 'foo'; // a string
$an_int = 12; // an integer
echo gettype($a_bool); // prints out: boolean
echo gettype($a_str); // prints out: string
// If this is an integer, increment it by four
if (is_int($an_int)) {
$an_int += 4;
}
// If $bool is a string, print it out
// (does not print out anything )
if (is_string($a_bool)) {
echo "String: $a_bool";
}
?>
If you want to force a variable to a certain type, you can use cast or the settype() function.
Note that variables will exhibit different values in certain situations depending on their type at the time. See Type Tricks for more information. Additionally, you can refer to the PHP Type Comparison Chart for examples of how different types compare to each other.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Logging in CakePHP is a very easy task. You just have to use one function. You can log errors, exceptions, user activities, action taken by users, for any background process like cronjob. Logging data in CakePHP is easy. The log() function is provide

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
