Created
July 15, 2015 12:05
-
-
Save nmurzin/9b2a5c2f8f99afceaa3c to your computer and use it in GitHub Desktop.
Brainfuck
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Foo { | |
public $deepest = 10; | |
public function __toString() | |
{ | |
return 'deep'; | |
} | |
} | |
$deeper = 'deepest'; | |
$deep = 'deeper'; | |
$b = new Foo(); | |
echo $b->$$$b; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment