Created
June 27, 2017 16:32
-
-
Save nainglinaung/69349703b1b0b49326f31747827d64ca to your computer and use it in GitHub Desktop.
riddle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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