gbmrocks / phpobfuscator

Automatically exported from code.google.com/p/phpobfuscator
0 stars 0 forks source link

class vars error #22

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
if i have this class
#############
class aa
{
   var $b = 'aaaa';

   funcion example()
   {
      echo $this->b;
   }

}
#############

when i Obfuscate this class  then the program change vaiable $b to whatever

but it keep $this->b  and not change it so that make some errors in a lot 
of scripts

Original issue reported on code.google.com by 7ad...@gmail.com on 7 Apr 2009 at 3:59