Guest User

Untitled

a guest
Apr 23rd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2.  
  3. class Home extends Controller {
  4.  
  5. function set() {
  6.  
  7. $this->output = "2";
  8.  
  9. }
  10.  
  11. }
  12.  
  13. class Controller {
  14.  
  15. function renderoutput() {
  16.  
  17. echo $this->output;
  18.  
  19. }
  20.  
  21. }
  22.  
  23. $class = new Home( );
  24.  
  25. $class->renderoutput();
  26.  
  27. ?>
Add Comment
Please, Sign In to add comment