Skip to content

Instantly share code, notes, and snippets.

@barce
Created April 4, 2010 07:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save barce/355194 to your computer and use it in GitHub Desktop.
Save barce/355194 to your computer and use it in GitHub Desktop.
<?php
// referencing class methods with a variable
class X {}
$foo = new X;
$foo->bar = 'yar';
$baz = 'bar';
echo $foo->$baz;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment