Created
November 5, 2014 19:14
-
-
Save m6w6/a9e37c19b2910c71ca41 to your computer and use it in GitHub Desktop.
php -d opcache.enable_cli=1 opcache-segv.php
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 | |
| class Foo { | |
| const FOO = 'Foo'; | |
| const FOOBAR = self::FOO.'Bar'; | |
| function baz() { | |
| echo $segfault = self::FOOBAR.'Baz'; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment