<?PHP
function bar(&$the_variable)
   {
   
$temp=$the_variable;
   
mt_srand(mktime());
   
$the_variable=md5 (uniqid (mt_rand()));
   foreach(
$GLOBALS as $key=>$value)
      {
      if (
$value === $the_variable)
         {
         echo 
"value= $value - the_variable= $the_variable<BR>";
         
$the_variable=$temp;
         return 
$key;
         }
      }
   
$the_variable=$temp;
   }

$jallaBalla="bar";
$var_name=bar($jallaBalla);
echo 
$var_name;

?>