Skip to content

Instantly share code, notes, and snippets.

@sanmai
Created October 30, 2015 01:38
Show Gist options
  • Save sanmai/6f75d3947941b7bea773 to your computer and use it in GitHub Desktop.
Save sanmai/6f75d3947941b7bea773 to your computer and use it in GitHub Desktop.
If you want to die more than once
<?php
class one
{
public function __construct()
{
die("DIED ONCE\n");
}
}
class two
{
public function __destruct()
{
new one();
}
}
$two = new two();
new one();
DIED ONCE
DIED ONCE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment