Instead of just using the superglobal array $GLOBALS?
For example I've taken to using $GLOBALS['user'] whenever I need to access a variable from the global scope. Opposed to writing for example "global $user" in a function and by that reserving that name for the rest of the functions scope.
Some functions I encounter in Drupal/UC are quite large (lots of lines of code). I personally find it easier to read code where you can easily tell if whatever variable currently being used is a global or not.
Just curious 




So if I'm going to be using it several times in a function, I'll probably declare it global at the beginning to save just a tiny bit of extra work.