对于给定的代码:
if(false){
something_not_executed();
}else{
something_executed();
}
在调试器跨过它之后,PhpStorm能否以某种方式区分(风格不同)未执行的部分代码?
答案 0 :(得分:0)
您有两个选择:
1)使用phpunit为您的代码编写适当的测试,并使用代码覆盖率
运行它 2)在<%@ Page Title="" Language="C#"
MaintainScrollPositionOnPostback="True" AutoEventWireup="true"
CodeBehind="Register.aspx.cs" Inherits="Organization.Register" %>
<%@ Register Src="../DialogUF.ascx" TagPrefix="comp" TagName="DialogUF" %>
<asp:Content runat="server">
<asp:LinkButton ID="btnUF" runat="server" CausesValidation="False"
OnClick="btnUF_Click">aqui</asp:LinkButton>
<Comp:DialogUF ID="dlgUF" runat="server" />
</asp:Content>
语句的任意一侧设置一个断点,然后你就会知道哪一方正在运行,因为它会在那时停止。