ধরা যাক আমাদের নিম্নলিখিত মান আছে −
$nextValue=100;
আসুন একটি নতুন ভেরিয়েবল নিই এবং একটি রেফারেন্স বরাদ্দ করি -
$currentValue = &$nextValue;
একটি রেফারেন্স বরাদ্দ করতে, পিএইচপি-তে রেফারেন্স অ্যাসাইনমেন্ট অপারেটর যেমন =&$anyVariableName ব্যবহার করুন।
পিএইচপি কোডটি নিম্নরূপ -
উদাহরণ
<!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