मान लें कि हमारे पास निम्न मान है -
$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