Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> PHP

ตัวดำเนินการกำหนดการอ้างอิงใน PHP เพื่อกำหนดการอ้างอิง?


สมมติว่าเรามีค่าดังต่อไปนี้ −

$nextValue=100;

ให้เราใช้ตัวแปรใหม่และกำหนดการอ้างอิง -

$currentValue = &$nextValue;

ในการกำหนดการอ้างอิง ให้ใช้ตัวดำเนินการกำหนดการอ้างอิง เช่น =&$anyVariableName ใน PHP

รหัส PHP มีดังต่อไปนี้ -

ตัวอย่าง

<!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>

ผลลัพธ์

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