Skip to content

Instantly share code, notes, and snippets.

@wardbekker
Created May 18, 2011 13:58
Show Gist options
  • Save wardbekker/978613 to your computer and use it in GitHub Desktop.
Save wardbekker/978613 to your computer and use it in GitHub Desktop.
destruct never called
<?php
// watch how the destructor is never called
set_time_limit(1);
class Foobar {
public function doIt() {
while(true) {
}
}
public function __destruct() {
echo "destruct called?";
}
}
$foo =new Foobar();
$foo->doIt();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment