We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28f2959 commit 6d866aeCopy full SHA for 6d866ae
.gdbinit
@@ -554,6 +554,18 @@ document printzops
554
dump operands of the current opline
555
end
556
557
+define print_zstr
558
+ set $zstr = (zend_string *)$arg0
559
+ printf "length (%d): ", $zstr->len
560
+ ____print_str $zstr->val $zstr->len
561
+ printf "\n"
562
+end
563
+
564
+document print_zstr
565
+ print the length and contents of a zend string
566
+ usage: print_zstr [ptr]
567
568
569
define zbacktrace
570
____executor_globals
571
dump_bt $eg.current_execute_data
0 commit comments