如何在函数中设置断点(Netbeans),在那里我不使用代码来检查变量。
下面是一个在类中使用虚构(wordpress)钩子的例子:
function my_example($my_variable){
// -> Breakpoint to check the variable $my_variable not working
}
add_action("do_example", my_example);
字符串
在类或嵌套函数中,我在echo
中发现了一些错误。如果我只使用这样的变量:
function my_example($my_variable){
$my_variable; // -> Breakpoint not working
}
型
它不会在函数内停止。
我可以在JavaScript或Console中使用Console.log之类的东西吗?用C#编写?
我找到了error_log,但这不是我真正想要的。
- 谢谢-谢谢
1条答案
按热度按时间9udxz4iz1#
可以使用方法断点。
要执行此操作:
Window -> Debugging -> Breakpoints
窗口。Create new breakpoint
.Breakpoint type
下拉列表中选择Method
,并在Method Name
字段中写入函数的名称。