<?php // isset on local temps in a function (which would not be stored in // a hashtable in phc compiled code) function f() { if(isset($x)) echo "x is set (1)\n"; $x = 1; if(isset($x)) echo "x is set (2)\n"; } f(); ?>