-
-
Save polonskiy/adbe5b3b1865bef6294a19083c0a0788 to your computer and use it in GitHub Desktop.
How to find a segfault in 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 | |
register_tick_function(function() { | |
$bt = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1); | |
$last = reset($bt); | |
echo sprintf("%s +%d\n", $last['file'], $last['line']); | |
}); | |
declare(ticks=1); | |
function foobar() | |
{ | |
$c = 1; | |
$d = 1; | |
// segfault | |
// $d = 1; | |
} | |
foobar(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment