diff options
author | Urban Müller | 2022-06-29 17:26:21 +0200 |
---|---|---|
committer | Urban Müller | 2022-06-29 17:28:29 +0200 |
commit | 960842296e3cb38f00be2f83dd37aa12dd4aef4e (patch) | |
tree | 94308b83ad15e33dda76820d278a3b097a93b32c | |
parent | 94f9adc2ea3f59aba79b3d2507a1961ae53ecc4a (diff) | |
download | itools-960842296e3cb38f00be2f83dd37aa12dd4aef4e.tar.gz itools-960842296e3cb38f00be2f83dd37aa12dd4aef4e.tar.bz2 itools-960842296e3cb38f00be2f83dd37aa12dd4aef4e.zip |
still need stackoffs=1 for use of D()
-rw-r--r-- | auto_prepend.php | 2 | ||||
-rw-r--r-- | it_debug.class | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/auto_prepend.php b/auto_prepend.php index 19108fb..971e977 100644 --- a/auto_prepend.php +++ b/auto_prepend.php @@ -7,7 +7,7 @@ */ function D(...$args) { - return it_debug::dump($args); + return it_debug::dump($args, ['stackoffs' => 1]); } /** diff --git a/it_debug.class b/it_debug.class index 66eb09b..01b7d5e 100644 --- a/it_debug.class +++ b/it_debug.class @@ -113,7 +113,7 @@ static function dump($args, $p = []) else if (defined('STDOUT') && posix_isatty(STDOUT) && $p['color']) list($blue, $noblue, $red, $nored, $ansiok) = getenv('IT_ED_BRIGHT') ? array("\033[34m", "\033[m", "\033[33m", "\033[m", 1) : array("\033[34m", "\033[m", "\033[31m", "\033[m", 1); - $src = it_debug::srcline(2); + $src = it_debug::srcline($p['stackoffs'] ?: 2); list($dummy, $function, $paramlist) = preg_match('#\b(D|ED|EDC|EDX)\s*\((.*)#i', $src, $parts) ? $parts : array(); $paramtokens = token_get_all("<?php $paramlist"); array_shift($paramtokens); |