


PHP Task Learning 3: Static variables and custom constants_PHP Tutorial
Declaration and use of static variables
How to use custom constants
What are static variables?
Static variables refer to variables declared with static. The difference between this type of variable and local variables is that when a static variable leaves its scope, its value will not automatically die. Continue to exist, and the most recent value can be retained when it is used next time.
The following is an example:

{ static $i=0;
$i++;
echo $i;
}
add();
echo " ";
add();
?>
In this program, a function add() is mainly defined, and then add() is called twice.
If you use local variables to divide this code, the output of both times should be 1. But the actual output is 1 and 2.
This is because the variable i is added with a modifier static when it is declared, which means that the i variable is a static variable inside the add() function and has the function of memorizing its own value. When add is called for the first time, i becomes 1 due to self-increment. At this time, i remember that it is no longer 0, but 1. When we call add again, i increments itself again, from 1 It became 2. From this, we can see the characteristics of static variables.
What are custom constants?
The so-called custom constant refers to using a character identifier to represent another object. This object can be a numerical value, a string, a Boolean value, etc. Its definition has many similarities with variables. The only difference is that the value of a variable can be changed arbitrarily while the program is running, but once a custom constant is defined, it can no longer be modified while the program is running.
is defined as follows:
define("YEAR","2012");
Use the define keyword to bind the string 2012 to YEAR. Wherever YEAR appears in the program, replace it with 2012. Generally, when we define constants, the constant names use uppercase letters.
Example:

define("MONTH","12");
define("DATE","21");
define ("THING","Doomsday");
echo YEAR."-".MONTH."-".DATE." ".THING;
?>
In this program, four constants are defined, namely YEAR, MONTH, DATE, and THING. Their corresponding values are 2012, 12, 21, and Doomsday. When we use echo to connect them and display them, they are The difference with variables is that "$" is not used.
The result of its operation is: 2012-12-21 Doomsday.
Author’s blog: http://www.cnblogs.com/walkbro/

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

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

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

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.

In this chapter, we are going to learn the following topics related to routing ?

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.

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
