Skip to content

Instantly share code, notes, and snippets.

@nainglinaung
Created June 27, 2017 16:32
Show Gist options
  • Save nainglinaung/69349703b1b0b49326f31747827d64ca to your computer and use it in GitHub Desktop.
Save nainglinaung/69349703b1b0b49326f31747827d64ca to your computer and use it in GitHub Desktop.
riddle
<?php
class Dog{
public function __call($_,Array $arguments)
{
echo $arguments[0];
}
}
$dog = new Dog();
$dog->bark("Woof!");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment