PHP's variable variables feature is temptingly powerful, but can lead to unmaintainable code.
$var = 'foo'; $$var = 'bar'; //Noncompliant $$$var = 'hello'; //Noncompliant echo $foo; //will display 'bar' echo $bar; //will display 'hello'