本文演示了创建一个不存在的变量、将多个变量指向同一个值、链接多个变量以及使用引用赋值或 =& 运算符或在 PHP 中取消链接多个变量。 在 php 中使用 =& 运算符创建一个不存
本文演示了创建一个不存在的变量、将多个变量指向同一个值、链接多个变量以及使用引用赋值或 =&
运算符或在 PHP 中取消链接多个变量。
=&
运算符创建一个不存在的变量我们将创建一个数组并使用按引用赋值运算符来创建一个数组变量,而无需最初声明该变量。
<?php
$test = array();
$test1 =& $test['z'];
var_dump($test);
?>
输出:
array(1) {
["z"]=>
&NULL
}
=&
运算符将多个变量指向相同的值(内存位置)我们将创建一个变量,为其赋值,然后使用引用赋值运算符使其他变量指向与第一个变量相同的内存位置。
<?php
$firstValue=100;
$secondValue =& $firstValue;
echo "First Value=".$firstValue."<br>";
echo "Second Value=". $secondValue."<br>";
$firstValue = 45000;
echo "After changing the value of firstValue, secondValue will reflect the firstValue because of =&","<br>";
echo "First Value=". $firstValue."<br>";
echo "Second Value=". $secondValue;
?>
输出:
First Value=100
Second Value=100
After changing the value of firstValue, secondValue will reflect the firstValue because of =&
First Value=45000
Second Value=45000
=&
运算符链接多个变量我们将创建一个变量,为其赋值,然后使用引用赋值运算符将其他变量链接到初始变量。它们都指向初始变量值。
<?php
$second = 50;
$first =& $second;
$third =& $second;
$fourth =& $first;
$fifth =& $third;
// $first, $second, $third, $fourth, and $fifth now all point to the same data, interchangeably
//should print 50
echo $fifth;
?>
输出:
50
=&
运算符取消多个变量的链接我们将创建两个变量并为它们赋值。然后使用引用运算符来链接和取消链接其他变量。
变量指向不同的值。
<?php
$second = 50;
$sixth = 70;
$first =& $second;
$third =& $second;
$fourth =& $first;
$fifth =& $third;
// $first, $second, $third, $fourth, and $fifth now all point to the same data, interchangeably
//unlink $fourth from our link, now $fourth is linked to $sixth and not $third
$fourth = $sixth;
echo $fourth;
?>
输出:
70
--结束END--
本文标题: PHP 中的引用赋值运算符
本文链接: https://lsjlt.com/news/569115.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0