1--TEST-- 2Indirect referenced $this 3--FILE-- 4<?php 5class X { 6 function f($x){var_dump($$x);} 7} 8$x = new X; 9$x->f("this"); 10?> 11--EXPECTF-- 12object(X)#%d (0) { 13} 14