rfc:debug_backtrace_depth
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
rfc:debug_backtrace_depth [2021/03/13 17:11] – created tandre | rfc:debug_backtrace_depth [2025/04/03 13:08] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 3: | Line 3: | ||
* Date: 2021-03-13 | * Date: 2021-03-13 | ||
* Author: Tyson Andre, tandre@php.net | * Author: Tyson Andre, tandre@php.net | ||
- | * Status: | + | * Status: |
* First Published at: https:// | * First Published at: https:// | ||
* Implementation: | * Implementation: | ||
Line 9: | Line 9: | ||
===== Introduction ===== | ===== Introduction ===== | ||
- | Inspecting the current stack trace depth is occasionally useful for manually debugging, checking for potential infinite recursion, or for checking if code would hit stack frame limits in extensions such as XDebug | + | Inspecting the current stack trace depth is occasionally useful for manually debugging, checking for potential infinite recursion, or for checking if code would hit stack frame limits in extensions such as Xdebug |
===== Proposal ===== | ===== Proposal ===== | ||
Line 24: | Line 24: | ||
When '' | When '' | ||
- | Internally, PHP's stack frames are represented like a linked list (i.e. to count them, you need to iterate through the frames), and this RFC does not change that representation. The amount of time needed to compute the depth is proportional to the depth, which is why this RFC supports the optional '' | + | Internally, PHP's stack frames are represented like a singly |
==== Example use cases ==== | ==== Example use cases ==== | ||
Line 53: | Line 53: | ||
=== Checking for compatibility with extensions with stack trace limits === | === Checking for compatibility with extensions with stack trace limits === | ||
- | For example, in XDebug | + | For example, in Xdebug |
<code php> | <code php> | ||
Line 59: | Line 59: | ||
function my_common_function() { | function my_common_function() { | ||
if (is_running_as_unit_test() && debug_backtrace_depth(250) >= 250) { | if (is_running_as_unit_test() && debug_backtrace_depth(250) >= 250) { | ||
- | throw new TestFrameworkError(" | + | throw new TestFrameworkError(" |
} | } | ||
// body of my_common_function() | // body of my_common_function() | ||
Line 107: | Line 107: | ||
===== Future Scope ===== | ===== Future Scope ===== | ||
The behavior of '' | The behavior of '' | ||
+ | |||
+ | ===== Proposed PHP Version ===== | ||
+ | 8.1 | ||
+ | |||
+ | ===== Discussion ===== | ||
+ | |||
+ | ==== Limited to a specific use case ==== | ||
+ | |||
+ | https:// | ||
+ | |||
+ | < | ||
+ | There hasn't been much discussion on this one, probably because the | ||
+ | functionality and use cases are so specific. I'm not really convinced by | ||
+ | your examples. | ||
+ | |||
+ | For the purpose of printing debug logs, using an engine-provided depth is | ||
+ | non-ideal, because any intermediate helper functions will count towards the | ||
+ | depth. Tracking your own depth will result in a more meaningful/ | ||
+ | output. | ||
+ | |||
+ | For tracking down infinite recursion, isn't this what the xdebug recursion | ||
+ | limit is for? You'll directly get your recursive stack trace, which should | ||
+ | make it obvious where the infinite recursion occurs. Using | ||
+ | debug_backtrace_depth() for this purpose means that you actually already | ||
+ | need to know where you are infinitely recursing in order to place the guard. | ||
+ | |||
+ | If you want to find places where your code would hit the xdebug recursion | ||
+ | limit, then why not run it under xdebug and find out, rather than trying to | ||
+ | simulate the same behavior manually? That again requires that you actually | ||
+ | place relevant guards in the first place, which makes this another chicken | ||
+ | and egg problem. | ||
+ | </ | ||
+ | |||
+ | |||
+ | ===== Proposed Voting Choices ===== | ||
+ | |||
+ | Yes/No, requiring a 2/3 majority |
rfc/debug_backtrace_depth.1615655490.txt.gz · Last modified: 2025/04/03 13:08 (external edit)