class Test { public function say($a) { return $a ; } public function tell() { $c = "Hello World" ; $a = $this->say($c) ; return $a ; } } $b= new Test() ; echo $b->tell() ;