如题: function test($str){ var_dump($str); } $user='xxx'; test($user); 怎么能在 test 函数内,取到'user'这个字符串。它是实参的名称。 实参, test, str, user