Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2. class Mascota{
  3. var $nombre;
  4.  
  5. public function __construct($nombre){
  6. $this->nombre = $nombre;
  7. }
  8.  
  9. public function ladrar(){
  10. echo "¡Guau!";
  11. }
  12.  
  13. public function __toString(){
  14. return "Soy de la clase mascota. Mi nombre es " . $this->nombre;
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement