<?php $myVariable = "a"; function changeVar($newVar) { global $myVariable $myVariable = "b"; } echo $myVariable; // Should echo b ?>