1
0
mirror of https://github.com/retailcrm/mailgun-php.git synced 2025-03-22 07:53:56 +03:00

16 lines
193 B
PHP
Raw Normal View History

2013-08-08 10:39:44 -07:00
<?PHP
class Test{
public function __call($name, $arguments){
return array($name => $arguments);
}
}
$test = new Test();
var_dump($test->olakwnfelkajweklfjlwkjelkmg("Asdfasdf"));
?>