如何在类的函数中调用函数?
我的代码看起来像这样(示例)
class Test
{
echo $this->unique();
public function unique($unique = FALSE)
{
function random()
{
return 1;
}
while($unique === FALSE)
{
return $this->random();
$unique = TRUE;
}
}
}
但我收到以下错误: 调用未定义的方法 Test::random()