I have scripts that are constantly changing the values of $SESSION vars. Rather than copying the values to temp vars, then doing the operations, then copying them back to the $SESSION vars, I've just been doing all my operations directly on the $_SESSION vars. Is this a performance issue? Is it significantly slower than performing the same operations on locally declared variables? Could someone explain?