Home Backend Development PHP Tutorial Understanding and using PHP's & quote character_PHP Tutorial

Understanding and using PHP's & quote character_PHP Tutorial

Jul 13, 2016 am 10:33 AM
php

Regarding the role of PHP references (that is, adding the ampersand in front of variables, functions, objects, etc.), let’s first look at the following program.

    
<?php
$a = 100; //声明变量a
$b = &$a; //声明变量b,引用自变量a
echo "$a <br />";  
echo "$b <br />";
$a++; //变量a自增1
echo "$a <br />";
echo "$b <br />";//查看变量b,也增加了1,说明使用的是同一存储单元
?>
Copy after login

Program execution result:

100 
100 
101 
101
Copy after login

Many people misunderstand that references in PHP are the same as pointers in C. In fact, they are not, and they are very different. Except for the pointers in C language that do not need to be explicitly declared during the array transfer process, other points need to be defined using *. However, the pointer to address (similar to a pointer) function in PHP is not implemented by the user himself, but is implemented by the Zend core. Yes, the reference in PHP adopts the principle of "copy-on-write", that is, unless a write operation occurs, variables or objects pointing to the same address will not be copied.

php defaults to passing by value:

 
<?php    
$a = 20;
$b = $a;
$a = $a + 10; 
echo $a.' and '.$b; 
?>
Copy after login

Program execution result:

30 and 20
Copy after login

If you want to pass it as an address, you need to add &, that is:

  
<?php
$a = 20;
$b = &$a; 
$a = $a + 10; 
echo $a.' and '.$b; 
?>
Copy after login

Program execution result:

30 and 30
Copy after login

In other words, & passes the address of $a to $b. In this case, the two variables now share a memory storage area, which means that their values ​​are the same.

The same syntax can be used in functions, which return references, and in the new operator:

<?php
$bar =& new fooclass();
$foo =& find_var($bar);
?>
Copy after login

The second thing a reference does is pass a variable by reference. This is accomplished by creating a local variable within the function that references the same content in the calling scope. To put it simply, the parameter of a function is a reference to a local variable. Here’s another example:

<?php
function foo(&$val1, $val2) {
	$val1 += 1;
	$val2 += 1;
}
$a=5;
$b=10;
foo($a,$b);
echo $a;
echo $b;
?>
Copy after login

To run this code, you pass two parameters to the function, one is a reference to the content of $a, and the other is the value of $b. After executing this function, it is found that the content of $a has changed, while the content of $b is No changes.

The third usage of PHP references is reference return. This usage is a bit difficult to understand. Reference return is used when you want to use a function to find which variable the reference should be bound to. When returning a reference, use this syntax: To put it simply, it is still the return of the reference function. But unlike parameter passing, the & symbol must be used in both function definition and function reference. Here’s an example:

<?php
function &find_var ($param)
{
    /* ...code... */
    return $found_var;
}
$foo =& find_var ($bar);
$foo->x = 2;
?>
Copy after login

In this example, the assignment to $foo is the return reference of the function find_var, so when assigning a value to $foo->x, the return reference of find_var is assigned instead of a simple assignment.

The last usage of PHP references is reference positioning. There are two main applications: one is global reference. When declaring a variable with global $var, a reference to the global variable is actually established. That is, it is the same as $var =& $GLOBALS["var"];. Another one is the usage of $this. In a method of an object, $this is always a reference to the object that calls it.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/752461.htmlTechArticleAbout the role of PHP references (that is, adding symbols in front of variables, functions, objects, etc.), let’s first look at Below is the program. ?php$a = 100; //Declare variable a$b = //Declare variable b, reference...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

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

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

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

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

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

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

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

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

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

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

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

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

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

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

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

See all articles