Skip to content

Instantly share code, notes, and snippets.

@xat
Last active December 17, 2015 23:38
Show Gist options
  • Save xat/5690206 to your computer and use it in GitHub Desktop.
Save xat/5690206 to your computer and use it in GitHub Desktop.
<?php
function setter($val) {
return function(&$val) use ($val) {}
};
$fooSetter = setter('foo');
$fooSetter($x);
echo $x; // 'foo'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment