Why does PHP use quotes
What is a quote?
Quoting in PHP means accessing the same variable content with different names. This is not like a C pointer; instead, the reference is a symbol table alias. Note that in PHP, variable names and variable contents are different, so the same content can have different names. The closest analogy is Unix's filenames and the files themselves - the variable names are the directory entries, and the variable contents are the files themselves. References can be thought of as hardlinks in Unix file systems.
1. Variable reference
<? a="ABC";a="ABC";b =&a;echoa;echoa;//这里输出:ABC echo b;//这里输出:ABCb;//这里输出:ABCb="EFG"; echo a;//这里a;//这里a的值变为EFG 所以输出EFG echo $b;//这里输出EFG ?>
2. Function reference transfer
<?php function test(&a)$a=$a+100;a)$a=$a+100;b=1; echo b;//输出1test(b;//输出1test(b); //这里b传递给函数的其实是b传递给函数的其实是b的变量内容所处的内存地址,通过在函数里改变a的值 就可以改变a的值 就可以改变b的值了 echo "<br>"; echo $b;//输出101 ?>
3. Function Reference return
<?php function &test() { static b=0;//申明一个静态变量b=0;//申明一个静态变量b=b+1;echob+1;echob; return b; }b; }a=test();//这条语句会输出 b的值 为1b的值 为1a=5; a=test();//这条语句会输出a=test();//这条语句会输出b的值 为2 a=&test();//这条语句会输出a=&test();//这条语句会输出b的值 为3 a=5;a=5;a=test();//这条语句会输出 $b的值 为6 ?>
4. Object reference
<?php class a{ var abc="ABC"; }abc="ABC"; }b=new a; c=c=b; echo b−>abc;//这里输出ABCechob−>abc;//这里输出ABCechoc->abc;//这里输出ABC b−>abc="DEF";echob−>abc="DEF";echoc->abc;//这里输出DEF ?>
5. Reference function
If the program compares If there are many variables that refer to the same object, and you want to clear it manually after using the object, it is recommended to use the "&" method, and then use $var=null to clear it. In other cases, use the default method of php5. In addition, php5 For the transfer of large arrays, it is recommended to use the "&" method, which can save memory space.
For more PHP related knowledge, please visit PHP Chinese website!
The above is the detailed content of Why PHP uses references. For more information, please follow other related articles on the PHP Chinese website!

The article compares ACID and BASE database models, detailing their characteristics and appropriate use cases. ACID prioritizes data integrity and consistency, suitable for financial and e-commerce applications, while BASE focuses on availability and

The article discusses securing PHP file uploads to prevent vulnerabilities like code injection. It focuses on file type validation, secure storage, and error handling to enhance application security.

Article discusses best practices for PHP input validation to enhance security, focusing on techniques like using built-in functions, whitelist approach, and server-side validation.

The article discusses strategies for implementing API rate limiting in PHP, including algorithms like Token Bucket and Leaky Bucket, and using libraries like symfony/rate-limiter. It also covers monitoring, dynamically adjusting rate limits, and hand

The article discusses the benefits of using password_hash and password_verify in PHP for securing passwords. The main argument is that these functions enhance password protection through automatic salt generation, strong hashing algorithms, and secur

The article discusses OWASP Top 10 vulnerabilities in PHP and mitigation strategies. Key issues include injection, broken authentication, and XSS, with recommended tools for monitoring and securing PHP applications.

The article discusses strategies to prevent XSS attacks in PHP, focusing on input sanitization, output encoding, and using security-enhancing libraries and frameworks.

The article discusses the use of interfaces and abstract classes in PHP, focusing on when to use each. Interfaces define a contract without implementation, suitable for unrelated classes and multiple inheritance. Abstract classes provide common funct


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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

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

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Linux new version
SublimeText3 Linux latest version