Skip to content

Instantly share code, notes, and snippets.

@kjohnson
Last active August 5, 2016 03:49
Show Gist options
  • Select an option

  • Save kjohnson/f173b1557796a10c4cb8dcac5a7ddfc6 to your computer and use it in GitHub Desktop.

Select an option

Save kjohnson/f173b1557796a10c4cb8dcac5a7ddfc6 to your computer and use it in GitHub Desktop.
Dynamic method call.
<?php
class Foo
{
function bar()
{
$baz = 'qux';
$this->{ $baz }( 'qux' );
}
function qux( $qux )
{
echo $qux;
}
}
$foo = new Foo();
$foo->bar(); // Output: qux
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment