Hello Kodrik,

I would do the following code. Excuse me if there are many mistakes. I
am only a newbie. So:

function somefunction($myvar) {
            do something...
            ...
            ...
            return \$myvar;
}

$varname = somefunction($myvar);
echo "$varname";

Hope it helps you

SR

kodrik a écrit :

> If I have a variable, how do I extract the name of the variable.
>
> In principle:
>
> $varname=somefunction($myvar);
>
> The value of $varname is then "myvar"
>
> How do I do it?
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to