[PHP] pobierz, plaintext <?phpclass test { var $v1; var $v2; function test() { $this->$v1 = 1; $this->$v2 = 2; echo $this->$v1, $this->$v2; }}; $a = new test;?>[PHP] pobierz, plaintext