Basically it changes the value of the string outside of the function. Usually this function would reverse $strString within the function, but outside the function, the value is unchanged.
You can also use $GLOBALS['strString'] to change the 'global' value of the variable outside of the...