다음 값이 있다고 가정해 보겠습니다. -
$nextValue=100;
새로운 변수를 가져와서 참조를 할당합시다 -
$currentValue = &$nextValue;
참조를 할당하려면 참조 할당 연산자(예:PHP의 =&$anyVariableName)를 사용하세요.
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으로 인해 다음 값을 변경하면 현재 값이 반영됩니다.