有没有办法在一个if()
语句中有多个子句?
例如:
if( ($username=='textUser' && $role=='admin') || ($admin=='yes'))
{
// If the username AND role are set to admin OR if the admin is set to 'yes'
}
else
{
// Neither clauses of the if statement are true
}
也许这实际上是正确的代码,我没有尝试过 - 但如果没有,谁能告诉我怎么做?:)