<?php function test($obj) { $obj->a++; } $obj = new stdClass(); $obj->a = 1; test($obj); echo $obj->a;