phpist

Untitled

Oct 26th, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. <?php
  2. class Page
  3. {
  4. public function title()
  5. {
  6. echo "title";
  7. }
  8. public function content()
  9. {
  10. echo "content";
  11. }
  12. }
  13.  
  14. print_r( Page::content())
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment