Computer >> Máy Tính >  >> Lập trình >> PHP

Toán tử gán tham chiếu trong PHP để gán một tham chiếu?

Giả sử chúng ta có giá trị sau -

$nextValue=100;

Hãy để chúng tôi lấy một biến mới và gán một tham chiếu -

$currentValue = &$nextValue;

Để chỉ định một tham chiếu, hãy sử dụng toán tử gán tham chiếu tức là =&$ anyVariableName trong PHP.

Mã PHP như sau -

Ví dụ

<!DOCTYPE html>
<html>
<body>
<?php
   $nextValue=100;
   $currentValue = &$nextValue;
   echo "Next Value=",$nextValue,"<br>";
   echo "Current Value=",$currentValue,"<br>";
   $nextValue = 45000;
   echo "After changing the value of next will reflect the current value because of =&","<br>";
   echo "Next Value=",$nextValue,"<br>";
   echo "Current Value=",$currentValue;
?>
</body>
</html>

Đầu ra

Next Value=100
Current Value=100
After changing the value of next will reflect the current value because of =>
Next Value=45000
Current Value=45000