Skip to content

Instantly share code, notes, and snippets.

@gabrieljmj
Last active December 30, 2015 21:25
Show Gist options
  • Select an option

  • Save gabrieljmj/686f41aeaf99516d3b83 to your computer and use it in GitHub Desktop.

Select an option

Save gabrieljmj/686f41aeaf99516d3b83 to your computer and use it in GitHub Desktop.
PHP OO
<?php
class PhpVanilla
{
public function __call($name, array $args)
{
return call_user_func_array($name, $args);
}
}
$php = new PhpVanilla;
echo $php->strlen('Hello');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment