<?php function horrible_function(&$o) { $o = (object)array('haha' => 'got you'); } class innocent_bystander { function operation() { horrible_function($this); var_dump($this); } function test() { var_dump($this); } } $h = new innocent_bystander(); $h->operation(); $h->test(); var_dump($h);
You have javascript disabled. You will not be able to edit any code.