Skip to content

Instantly share code, notes, and snippets.

@hatelove
Created October 18, 2012 12:54
Show Gist options
  • Save hatelove/3911622 to your computer and use it in GitHub Desktop.
Save hatelove/3911622 to your computer and use it in GitHub Desktop.
if(len(xxx)>= 0)
{
if(xxx != "offline" && xxx != "")
{
//xxx非"offine",且xxx非""
}
else if(xxx=="offline")
{
//xxx為"offline"
}
else
{
//xxx為""
}
}
else
{
// 這裡才是我的疑問,什麼時候會進來
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment