Skip to content

Instantly share code, notes, and snippets.

@JoelMarcey
Created October 7, 2015 19:46
Show Gist options
  • Save JoelMarcey/8aabf4ef32c8d34ce7b0 to your computer and use it in GitHub Desktop.
Save JoelMarcey/8aabf4ef32c8d34ce7b0 to your computer and use it in GitHub Desktop.
StdClass call
<?php
$foo = new StdClass;
$foo->bar = 3;
$foobar = function ($qux) { var_dump($this->bar + $qux); };
$foobar->call($foo, 4); // prints int(7)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment