PHP References
PHP reference are the symbol table aliases by means of which content of one variable can be access by different names. The explicitly defined referenced variable needs to be preceded by ampersand (&) symbol. The functionality of PHP references can be explained using the analogy of Window’s shortcut. PHP references can be defined in PHP programming in various ways.
Start Your Free Software Development Course
Web development, programming languages, Software testing & others
Methods to Create PHP References
Mostly used methods to create PHP references are discussed as below:
1. Using the Keyword ‘global’
In the method reference can be created using the keyword ‘global’ before the referenced variable. Declaring a reference as global variable adds the variable to $GLOBAL array and enable the user to access a global variable within the scope of the function. Basically there are two ways through which a PHP reference can be defined being declared as global variable such as:
function Function_name() { global $globalVar; } OR function Function_name() { $globalVar =& $GLOBALS["globalVar"]; }
Example
The below code snippet is designed to demonstrate the different between the value for the same variable with respect to local scope and to global scope.
<?php function functionname() { $inputvar = "within function scope"; echo '$inputvar in global scope: ' . $GLOBALS["inputvar"] . "\n"; echo '$inputvar in current scope: ' . $inputvar . "\n"; } $inputvar = "Outside function scope"; $othervar= $GLOBALS["inputvar"]; //Creating inputvar in GLOBAL array functionname(); echo '$othervar : ' . $othervar . "\n"; ?>
Output
Othervar is the reference set for the inputvar from GLOBAL array. It is not bound to the inputvar variable defined in the local scope of the function.
2. Using $this Variable
‘$this’ variable is default reference to the object for the function, of which, $this variable is referred.
Example
The below code demonstrates the usage of $this variable to access value of any class property from the chosen class object.
<?php class Thisclass { var $clsproperty = 300; function classmethod() { $this->clsproperty = 500; // $this is a reference to the object } } $clsObject = new Thisclass(); $clsObject->classmethod(); echo "The displayed value is: ". $clsObject->clsproperty; //display the value updated using $this property ?>
Output
The value of the clsproperty is displayed based on the value set by using $this variable.
3. Passing an Object
In PHP programming, any operation performed on a class object such as assign, return or pass, etc; the operation always is carried out with reference to the object instead of its copy.
The standard syntax to create PHP object reference is followed as below:
class ClassName { //Body of the class } $classObj1 = new ClassName (); $classObj2= $classObj1;
Here classObj2 object is referring to the same content contained in classObj1.
Example
The below code snippet is designed to create reference object for the actual object and access its properties.
<?php class Costume { // Declaring the class properties public $name; public $color; // Declaring the class methods function set_name($name) { $this->name = $name; } function get_name() { return $this->name; } function set_color($color) { $this->color = $color; } function get_color() { return $this->color; } } //Creating the object $constume1 = new Costume(); $constume1->set_name('Superman'); $constume1->set_color('Blue and Red'); //Creating the object reference $constume2=$constume1; echo "Costume1 Name: " . $constume1->get_name(); echo "\n"; echo "Costume1 Color: " . $constume1->get_color(); echo "\n"; echo "\n"; echo "Costume2 Name: " . $constume2->get_name(); echo "\n"; echo "Costume2 Color: " . $constume2->get_color(); ?>
Output
The reference object Costume2 refers to the same values as carried within the properties name and color of the actual object Costume1.
Different Operations of PHP Programming
In PHP programming different operations are carried out with PHP references. Some of the major operations are discussed in the below session:
1. Passing by Reference
In order to enable a function to modify a variable which is defined out of its scope, the value needs to pass to the function by its reference.
Example
The below code snippet changes the value of the variable defined out of the scope of the called function using the reference to the variable.
<?php function Afunction(&$input) //passing the input argument by reference { $input*=10; } $outVar=5; echo "Before the function is called: ".$outVar; echo "\n"; Afunction($outVar); echo "After the function is called: ".$outVar; ?>
Output
The value of the variable outvar is changed by the function AFunction().
2. Returning References
This operation enables the calling function to find out the variable to which reference is to be bound. It is recommended to use only if there is any technical requirement, else it does not add to the performance of the program.
Example
The below code snippet is designed to pass the return value from a function parent function as reference to the defined class parent class.
<?php class parentclass { public $parentvar = "I am set at parent class"; public function &parentfunction() { return $this->parentvar; } } $parentobj = new parentclass; $newvar = &$parentobj->parentfunction(); echo $newvar; echo "\n"; $parentobj->parentvar= "I am set outside of the class"; echo $newvar; ?>
Output
3. Unsetting PHP Reference
User can break the binding between the variable and reference using the method unset().
Example
The below code snippet demonstrates the usage of the method unset() to unbound the referenced variable firstinput from secondinput.
<?php $firstinput = "I am first input"; $secondinput =& $firstinput; echo "First input: ". $firstinput; echo"\n"; echo "Second input: " . $secondinput; unset($firstinput); echo"\n"; echo"\n"; echo "After unsetting the reference: "; echo"\n"; $firstinput = "I am set to second input"; echo"\n"; echo "First input: ". $firstinput; echo"\n"; echo "Second input: " . $secondinput; ?>
Output
Conclusion
PHP references are important feature that is incorporated in PHP scripting. PHP references are not pointers as it can be described for ‘C’ which also occupy memory to create duplicate element. Rather PHP references are just different alias to refer the content from the actual variable. If copy of an object is required for an object in PHP, it can be done with the keyword ‘clone’.
The above is the detailed content of PHP References. For more information, please follow other related articles on the PHP Chinese website!

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

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

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

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

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

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.
