Advertisement
shelob9

Untitled

Jul 24th, 2016
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. class say_hi {
  2.  
  3. public $hello = 'Hi Roy';
  4.  
  5. public function hi_roy(){
  6. return $this->hello;
  7. }
  8.  
  9. public function hi_shawn(){
  10. $hello = 'Hi Shawn';
  11. return $hello;
  12. }
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement