aakash2310

Untitled

Nov 28th, 2022
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <?php
  11. class MyClass
  12. {
  13. public $v1;
  14. function setValue($x)
  15. {
  16. $this -> v1 = $x;
  17. }
  18. function getValue()
  19. {
  20. echo $this -> v1;
  21. }
  22. }
  23. $object1 = new MyClass;
  24. $object1 -> setValue(100);
  25. $object1 -> getValue();
  26.  
  27.  
  28. ?>
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment