Advertisement
Guest User

Sagun

a guest
Feb 21st, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <?php
  2. /* Interface is defined to provide a common function name to the implementers class*/
  3. interface Mail
  4. {
  5. public function sendMail($email);
  6. }
  7.  
  8.  
  9. class Register implements Mail
  10. {
  11. public function sendMail($email)
  12. {
  13. echo" Mail send to ".$email. "successfully";
  14. }
  15. }
  16. $register = new Register;
  17. $register->sendMail('giri.suresh2052@gmail.com');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement