标签: php variables
我需要将变量名称作为字符串,以便我可以使用它。
例如:
$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 ?; }