是否可以从类方法中创建函数?
IE。
class Test {
public function __construct()
{
if ( ! function_exists('foo') ) {
function foo ()
{
return $this->foo();
}
}
}
private function foo()
{
return 'bar';
}
}
还是我必须反过来做,创建一个函数并在方法中使用它?