Skip to content

Instantly share code, notes, and snippets.

@hirak
Created May 15, 2013 14:47
Show Gist options
  • Save hirak/5584538 to your computer and use it in GitHub Desktop.
Save hirak/5584538 to your computer and use it in GitHub Desktop.
__toString()でExceptionが発生すると死ぬ ref: http://qiita.com/items/195222c4f4f223e435fa
<?php
class Hoge {
function __toString() {
throw new Exception;
}
}
try {
$hoge = new Hoge;
echo $hoge;
} catch (Exception $e) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment