Mantis - Quercus
Viewing Issue Advanced Details
2812 minor always 07-29-08 19:01 08-07-08 16:18
nam  
ferg  
normal  
closed  
fixed  
none    
none 3.2.1  
0002812: $$object->foo() variable variable eval errors
(rep by xevioso)

<?php

class Setting
{
  function __call($name, $args)
  {
    echo "inside Setting->__call()\n";
    
    var_dump($name);
    var_dump($args);
    
  }
}

$ObjectType = 'Setting';
$$ObjectType = new $ObjectType();
$$ObjectType->foo();

?>

Notes
(0003288)
nam   
07-29-08 19:10   
php/0d6g
php/3d6g