Advertisement
sri211500

Untitled

Feb 25th, 2020
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <?php
  2. spl_autoload_register(function($class_name){
  3. include $class_name .'.php';
  4. });
  5.  
  6. $obj = new Manusia();
  7. echo $obj->nama = 'Sri';
  8. echo $obj->bersuara();
  9. echo "<br>";
  10.  
  11. $obj2 = new HewanPeliharaan('Bebekku','Herbivora','Rumput');
  12. $obj2->bersuara();
  13.  
  14.  
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement