Skip to content

Instantly share code, notes, and snippets.

@b00gizm
Created September 28, 2011 21:49
Show Gist options
  • Save b00gizm/1249351 to your computer and use it in GitHub Desktop.
Save b00gizm/1249351 to your computer and use it in GitHub Desktop.
Pimple crashes my PHP (no, really.)
[Wed Sep 28 23:44:22 2011] [notice] child pid 42995 exit signal Segmentation fault (11)
<?php
$pimple = new \Pimple();
$pimple['foo'] = function($pimple) {
if (isset($pimple['foo'])) {
$foo = $pimple['foo'];
}
};
$pimple['foo'];
@b00gizm
Copy link
Author

b00gizm commented Sep 28, 2011

Recursion of death..?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment