Skip to content

Instantly share code, notes, and snippets.

@m6w6
Created November 5, 2014 19:14
Show Gist options
  • Select an option

  • Save m6w6/a9e37c19b2910c71ca41 to your computer and use it in GitHub Desktop.

Select an option

Save m6w6/a9e37c19b2910c71ca41 to your computer and use it in GitHub Desktop.
php -d opcache.enable_cli=1 opcache-segv.php
<?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