Guest User

Untitled

a guest
Oct 23rd, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <?php
  2.  
  3. // The blueprint
  4. class iPhone
  5. {
  6. public function orderPizza($typeOfPizza)
  7. {
  8. echo "Your " . $typeOfPizza . " pizza has been ordered";
  9. }
  10. }
  11.  
  12. // create a copy of the class (blueprint)
  13. $iPhone = new iPhone;
  14.  
  15. // use the orderPizza method
  16. $iPhone->orderPizza('pepperoni and mushroom');
  17.  
  18. // Result: Your pepperoni and mushroom pizza has been ordered
Add Comment
Please, Sign In to add comment