Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 5, 2021 07:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/231e42107668dfc9869907b108e8b29c to your computer and use it in GitHub Desktop.
Save parzibyte/231e42107668dfc9869907b108e8b29c to your computer and use it in GitHub Desktop.
<?php
class Mascota
{
public function ladrar()
{
echo "woof";
}
public function comer()
{
echo "yum";
}
}
$m = new Mascota();
$nombreFuncion = "ladrar";
$m->$nombreFuncion();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment