$name(); else : $this->$name(func_get_arg(0)); endif; } function Page0() { $this->bgcolor = "white"; $this->textcolor = "black"; print "Created default page"; } function Page1($bgcolor) { $this->bgcolor = $bgcolor; $this->textcolor = "black"; print "Created custom page"; } } $html_page = new Page("red"); ?>