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