If you run the sample code directly, getting the value of the GLOBALS variable and changing the variable will also fail.
<?php
function hello(){
## $GLOBALS['que'] = 'It's better to drink tea to refresh yourself';
## echo 'You adjusted the function hello<br />';
}
hello();
echo $que;
##? >