1--TEST-- 2Bug #38211 (variable name and cookie name match breaks script execution) 3--FILE-- 4<?php 5$test = 'test'; 6unset($$test); 7echo "ok\n"; 8?> 9--EXPECT-- 10ok 11