Skip to content

Instantly share code, notes, and snippets.

@voldemortensen
Created January 20, 2018 18:45
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 voldemortensen/f439a04b7e48b41a631d042edec2c451 to your computer and use it in GitHub Desktop.
Save voldemortensen/f439a04b7e48b41a631d042edec2c451 to your computer and use it in GitHub Desktop.
lol
<?php
class Lol {
private $value = 0;
public function __toString() {
return (string)$this->value += 1;
}
}
$a = new Lol();
if ("$a" == 1 && "$a" == 2 && "$a" == 3) {
echo "oops\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment