Created
September 28, 2011 21:49
-
-
Save b00gizm/1249351 to your computer and use it in GitHub Desktop.
Pimple crashes my PHP (no, really.)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Wed Sep 28 23:44:22 2011] [notice] child pid 42995 exit signal Segmentation fault (11) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$pimple = new \Pimple(); | |
$pimple['foo'] = function($pimple) { | |
if (isset($pimple['foo'])) { | |
$foo = $pimple['foo']; | |
} | |
}; | |
$pimple['foo']; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Recursion of death..?