class myPage
{
private function hellow_world()
{
return 'hellow_world';
}
public function createPage()
{
return hellow_world();
}
}
$page = new myPage();
echo $page->createPage();
public function createPage()
{
return $this->hellow_world();
}