xxxxxxxxxx
<html>
<head>
<meta charset="utf-8">
<title>PHP 变量函数 实例 - 自学教程(runoops.com)</title>
</head>
<body>
class Foo
{
function Variable()
{
$name = 'Bar';
$this->$name(); // 调用 Bar() 方法
}
function Bar()
{
echo "This is Bar";
}
}
$foo = new Foo();
$funcname = "Variable";
$foo->$funcname(); // 调用 $foo->Variable()
</body>
</html>