목차 1 개요 2 예시: PHP 3 같이 보기 4 참고 개요 variable variables 가변변수 변수의 값을 다시 변수명으로 사용하는 것 예시: PHP <?php $hello = 'world'; $a = 'hello'; echo $$a; // world → $$a는 $hello와 같은 의미가 됨 같이 보기 Less 가변변수 연관배열 변수 참고 http://php.net/manual/en/language.variables.variable.php https://css-tricks.com/snippets/php/variable-variables/