Variables are an essential thing in PHP programming. Variables in PHP are divided into global variables and private variables. Let me share some of my understanding and usage of PHP variables for your reference.
What aspects would you pay attention to when defining variables and constants? You may think:
•How to define variables, and how is it different from languages such as C#?
•Are variables case sensitive?
•Are there other important PHP variables?
•Are constants and variables defined the same?
Let’s tell them separately.
1. How to define variables, and how is it different from languages such as C#?
Variables in PHP are represented by a dollar sign followed by the variable name. Variable names are case-sensitive. For example:
The code is as follows | Copy code | ||||
$VAR='Kimi; echo "$var,$VAR";//Output "Jim,Kimi" ?> |
You may also care about the naming of variables, which is the same as in most languages.
2. Are variables case-sensitive?
代码如下 | 复制代码 |
1
2 $foo = 'Bob'; // 赋值'Bob'给foo 3 $bar = &$foo; // 通过$bar引用.注意&符号 4 $bar = "My name is $bar"; // 修改 $bar 5 echo $bar; 6 echo $foo; // $foo 也修改了. 7 ?> |
The code is as follows | Copy code |
1 2 $foo = 'Bob'; // Assign 'Bob' to foo 3 $bar = &$foo; // Referenced through $bar. Note the & symbol 4 $bar = "My name is $bar"; // Modify $bar 5 echo $bar; 6 echo $foo; // $foo has also been modified. 7 ?> |
Like other languages, only variables with variable names can be referenced
To put it bluntly, variable variables in PHP are to parse the value of a variable into a variable name and read the value of that variable name. Example:
The code is as follows | Copy code | ||||
|
|||||
代码如下 | 复制代码 | ||||
"; function show() { global $name; //这里的global并不是设置为全局变量。而是引用 echo $name." "; //输出man } function showtwo() { //global $name; //echo $name." "; echo $GLOBALS['name']; //超全局变量数组 } show(); showtwo(); ?> |
"; //Output China echo $$a."
"; //Output I'm Chinese --If you want to parse it as a variable variable, you must add an extra $ symbol in front $a = "f"; //Change the name pointed to by the variable (here is the application of variable variables) echo $$a."
"; //Output b after passing the variable f pointed to above $a = "b"; //Same as above echo $$a."
"; //Output a echo $b."
"; //output a echo $$b."
"; //output b echo $$$b."
"; //Output a echo $f."
"; //output b echo $$f."
"; //output a echo $$$f."
"; //output b echo $$$$f."
"; //Output a $$a = "China"; //The last one has changed the variable to b. The so-called $$a=$b is the changed value of $b echo $b."
"; //Output China echo $$b; //Output I'm Chinese ?> Note: Mutable variables cannot be applied to $this and superglobal variables (the scope of PHP variables is different from other high-level programming languages. See the code)
The code is as follows | Copy code |
$name = 'man';
$$name = 'abc'; //If there is no man variable in advance. Just create a new man variable. Then assign abc to
$$$name = 'def';
echo $man." "; //Output abc Echo $abc; //Output def echo " "; Function show() { global $name; //global here is not set as a global variable. Instead quote echo $name." "; //Output man } Function showtwo() { //global $name; //echo $name." "; echo $GLOBALS['name']; //Super global variable array } show(); Showtwo(); ?> |
Variable function:
The code is as follows | Copy code | ||||||||
{ echo "This is B"; } function c($name = "China") //Set default value { echo "This is $name"; } $a = 'b'; $a(); //Function to find the value $a = 'c'; $a(); ?>
|
The code is as follows | Copy code |
foreach($_POST as $key=>$value) //print_r($_POST); $$key = $value; } //extract($_POST); //Import variables from the array into the current symbol table --Find the PHP manual by yourself echo $name." "; echo $pwd." "; echo $tag." "; ?> |
Variable scope .
Variable scope
The scope of a variable is the context in which it is defined (Translator: To put it bluntly, its effective scope). Most PHP variables have only a single scope. This single scope span also includes files introduced by include and require. Example:
The code is as follows | Copy code | ||||||||
|
The code is as follows | Copy code | ||||
$a = 1; /* global scope */
} ?> |
This script will produce no output because the echo statement refers to a local version of the variable $a, and it is not assigned a value within this scope. You may notice that PHP's global variables are a little different from C language. In C language, global variables automatically take effect in functions unless overridden by local variables. This can cause problems, as someone might carelessly change a global variable. Global variables in PHP must be declared global when used in functions.
代码如下 | 复制代码 |
$a = 1; function Sum() Sum(); |
The code is as follows | Copy code |
$a = 1; $b = 2; function Sum() { global $a, $b; $b = $a + $b; } Sum(); echo $b; ?> |
The code is as follows | Copy code |
$a = 1; $b = 2; function Sum() { $GLOBALS["b"] = $GLOBALS["a"] + $GLOBALS["b"]; } Sum(); echo $b; ?> |
In the $GLOBALS array, each variable is an element, the key name corresponds to the variable name, and the value variable content. $GLOBALS exists in the global scope because $GLOBALS is a superglobal variable. The following example shows the use of superglobal variables:
Example 12-3. Example demonstrating superglobal variables and scope
The code is as follows | Copy code | ||||||||
{ // Most predefined variables are not "super", they require the 'global' keyword to make them available in the local scope of the function. global $HTTP_POST_VARS;
Print $_POST['name']; }
?> |
Use static variables
代码如下 | 复制代码 |
function Test() { static $a = 0; echo $a; $a++; } ?> |
Example 12-4. Demonstrates the need for static variables
The code is as follows | Copy code | ||||
function Test ()
{
$a = 0;
|
The code is as follows | Copy code |
function Test() { static $a = 0; echo $a; $a++; } ?> |
The code is as follows | Copy code |
function Test() { static $count = 0; $count++; echo $count; if ($count Test (); } $count--; } ?> |
Note: Static variables can be declared as in the above example. Assigning it with the result of an expression in a declaration will result in a parsing error.
Example 12-7. Declare static variables
The code is as follows
|
Copy code
|
||||||||
function foo(){
$int++; echo $int; }?>
References to global and static variables |
In the first generation of the Zend engine, which drives PHP4, static and global definitions of variables are implemented in the form of references. For example, a true global variable imported with the global statement inside a function scope actually establishes a reference to the global variable. This can lead to unexpected behavior, as the following example demonstrates:
The code is as follows |
The code is as follows | Copy code |
function &get_instance_ref() { static $obj; echo "Static object: "; var_dump($obj); if (!isset($obj)) { //Assign a reference to a static variable $obj = &new stdclass; } $obj->property++; Return $obj; } function &get_instance_noref() { static $obj; echo "Static object: "; var_dump($obj); if (!isset($obj)) { //Assign an object to a static variable $obj = new stdclass; } $obj->property++; Return $obj; } $obj1 = get_instance_ref(); $still_obj1 = get_instance_ref(); echo "/n"; $obj2 = get_instance_noref(); $still_obj2 = get_instance_noref(); ?> Executing the above example will result in the following output: Static object: NULLStatic object: NULLStatic object: NULLStatic object: object(stdClass)(1) { ["property"]=> int(1)} The above example demonstrates that when a reference is assigned to a static variable, its value is not remembered the second time the &get_instance_ref() function is called http://www.bkjia.com/PHPjc/628777.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/628777.htmlTechArticleVariables are an essential thing in PHP programming. Variables in PHP are divided into global variables and private variables. Variables, let me share some of my understanding and usage of PHP variables. You can refer to them... |

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。


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

SublimeText3 Chinese version
Chinese version, very easy to use

WebStorm Mac version
Useful JavaScript development tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

SublimeText3 Linux new version
SublimeText3 Linux latest version

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.
