Мне нужно имя переменной в виде строки, чтобы я мог ее использовать.
Например:
$name = "Some Name";
echo "The name of the variable that holds the name is ".findname($name);
function findname($variable) {
//how to find the name of the variable
return ?;
}