This article brings you a brief introduction to PHP constants and variables. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
Constant
1. A constant, as the name suggests, is a normal quantity
2. A constant is a quantity that remains unchanged during the execution of the script
3. The definition of a constant Using
//定义一个常量 define('NAME','wuhen'); //使用一个常量 echo NAME;//输出结果 wuhenecho "<br>"; //判断常量是否被定义 var_dump(defined('NAME'));//结果为bool(true)
Variables
1. A variable is a container used to temporarily store values, such as numbers, text characters, or arrays, etc.
2. Definition of variables
In PHP, variables are represented by the dollar sign ($) plus a variable name. There is no need to explicitly declare variables in PHP.
3. Naming rules
The variable name must start with a letter or an underscore "_"
The variable name can only contain Letters, numbers, and underscores
Variable names cannot contain spaces
PHP is a weak type checking language, so variables do not need to be predefined before use , and there is no need to specify the data type
4. Variable assignment
Assignment by value: Use "=" to directly assign the value of the assignment expression to another variable
Assignment by reference : Assign the reference of the assignment expression memory space to another variable
5. Destruction of the variable
Use the unset() function
6. Determine whether the variable exists
Use isset( )Function
//定义一个变量 $a; //传值赋值 $a = 5; //引用赋值 $b = &$a;//把$a的地址传给$b $b = 6; echo $a;//结果为6 //引用赋值,改变$b等于是改变$a //销毁变量 unset($a); //判断变量是否存在 var_dump(isset($a));//结果为bool(false),说明$a不存在已经被销毁
The scope of variables
1. Local variables
The scope of a variable declared inside a function is the function in which it is located. It is saved in the stack of memory, so it is very fast
2. Global variables
Contrary to local variables, global variables can be accessed anywhere in the program
Variables defined outside all functions have their scope within the entire PHP file
Global variables are used inside functions, and keywords are added before the variables global declaration or use $GLOBAL[”] to access
//全局变量 $a = 1;function fnc(){ //引用全局变量 global $a; echo $a; $a = $a+1; //使用全局变量数组引用 echo $GLOBALS['a']; } fnc();//结果为1 2
3. Static variables
Static variables are a special kind of local variables, static Variables only exist within the function scope
They will still exist on the stack after the function ends and will not be destroyed
Add the key before the variable Word static, the variable becomes a static variable
//静态变量 function fnc(){ //定义一个静态变量 static $count = 1; echo $count; $count += 1; } fnc();//结果为1 fnc();//结果为2 //说明静态变量$count,没有随着函数的结束而销毁
Variable variable
Variable variable refers to using the value of a variable as the variable Name
Variable names can be dynamically named and defined using the
syntax with two dollar signs $, or wrapped with {} Get up
//可变变量 $a = 'b'; $b = 'abcde'; echo $b; echo $$a; //相当于$b echo ${$a}; //相当于$b //结果都是 abcde
Related recommendations:
PHP newbies learn variables and constants
PHP 7: Definition of PHP variables and constants
The relationship and difference between php constants and variables
The above is the detailed content of A brief introduction to php constants and variables. For more information, please follow other related articles on the PHP Chinese website!

在PHP开发中,我们经常会遇到PHPNotice:Undefinedvariable的错误提示。这个错误提示表示我们在代码中使用了一个未定义的变量。虽然这个错误提示不会导致代码崩溃,但是它会影响代码的可读性和可维护性。下面,本文将为大家介绍一些解决这个错误的方法。1.在开发过程中使用error_reporting(E_ALL)函数在PHP开发中,我们可

PHPNotice:Undefinedvariable:arrin的解决方法在PHP编程中,我们经常会遇到“Notice:Undefinedvariable”这个错误提示。这个错误提示一般是因为访问了未定义的变量或者变量未被初始化导致的。对于这个问题,我们需要及时找到问题并解决。在本文中,我们将重点讨论PHPNotice:Undefin

在开发PHP应用程序时,如果遇到了"Undefinedvariable:sql"的提示,这通常意味着您正在引用一个未定义的变量。这可能是由于许多原因引起的,例如变量名称拼写错误、作用域问题或代码中的语法错误等。在本篇文章中,我们将探讨这个问题的各种原因,并提供一些解决这个问题的方法。1.变量名称拼写错误在您的PHP代码中,如果变量名称不正确或拼写错误,系

PHPNotice:Undefinedvariable:result是指在PHP程序中调用了一个未定义的变量result,这会导致程序产生Notice级别的警告。这种情况一般是由于程序员在编写PHP代码时未正确定义变量或者变量的作用域造成的。如果不及时解决,这种Notice级别的警告可能会导致程序的运行出现问题。那么,如何解决PHPNotice:

在PHP中,您可以使用和号(&)符号将变量按引用而不是按值传递。这样可以在函数或方法内修改原始变量。主要有两种方式可以通过引用传递PHP变量:使用ampersand符号在函数/方法声明中使用和符号将变量传递给函数/方法时在函数/方法声明中使用和号在PHP中,您可以使用函数/方法声明中的和号符号(&)通过引用传递变量。以下是更新的解释:要通过在函数/方法声明中使用&符号来传递引用变量,您需要在函数/方法定义中在参数名称之前包含&符号。这表示参数应该通过引用传递,允许

如何在PHP中使用数字变量在PHP中,数字变量是一种无需声明而直接使用的变量类型。可以使用数字变量进行数学计算、数据比较和其他数值操作。本文将介绍如何在PHP中使用数字变量,并提供具体的代码示例。定义数字变量在PHP中,定义数字变量非常简单,只需直接给变量赋予一个数字即可。下面是一个例子:$number=10;在上面的代码中,我们定义了一个名为$numb

在PHP编程中,变量是存储值的基本单元,用于在程序执行过程中储存和使用数据。在PHP中,变量可以被赋予不同的数据类型,包括整型、浮点型、字符串、数组等等。在本文中,我们将介绍PHP编程中常见的变量及其用法。简单变量简单变量是最常见的变量类型,它们可以存储整数、浮点数、字符串等常规数据类型。在PHP中,未定义变量的初始值为NULL。以下是几个实例:整型变量:$

PHP是一种极其流行的服务器端编程语言,它的灵活性和易用性使得它成为了构建大型Web应用程序的首选语言之一。在PHP中,变量是一个非常基本的概念,它可以用来存储和操作数据。在本文中,我们将深入探讨PHP中的变量和数据类型。变量在PHP中,变量用以存储值或者表达式的结果。PHP变量的命名规则比较灵活,但为了代码的可读性和可维护性,通常应遵循以下规则:变量名必须


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

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Chinese version
Chinese version, very easy to use
