$value = "test"; $$value = "sample"; //$test = "sample";と同義。下の書き方の方が無難。 ${$value} = "sample"; //$test = "sample";と同義。こちらの書き方の方が無難。