I have a large group of nested IF statements and I was wondering If anyone had any suggestions on how to optimize for speed, size, and readability.
Below is a sample of ONE of the if statements and its' nested statements. There will be approximately 25-30 of these in the document.
if( $row["inlet_moisture"] > $row["inlet_moisture_high_warning"] ) {
if( $row["inlet_moisture"] > $row["inlet_moisture_high_critical"] ) {
if( $row["inlet_high_critical"] == 0 ) {
if( $row["email_notification"] == 1 ) {
}
if( $row["mobile_notification"] == 1 ) {
}
}
} else {
if( $row["inlet_high_warning"] == 0 ) {
if( $row["email_notification"] == 1 ) {
}
if( $row["mobile_notification"] == 1 ) {
}
}
}
} else if( $row["inlet_moisture"] < $row["inlet_moisture_low_warning"] ) {
if( $row["inlet_moisture"] < $row["inlet_moisture_low_critical"] ) {
if( $row["inlet_low_critical"] == 0 ) {
if( $row["email_notification"] == 1 ) {
}
if( $row["mobile_notification"] == 1 ) {
}
}
} else {
if( $row["inlet_low_warning"] == 0 ) {
if( $row["email_notification"] == 1 ) {
}
if( $row["mobile_notification"] == 1 ) {
}
}
}
}
The idea is; I have a reading (temp/speed/moisture) and I need to check if it hits any of the limits (high warning / high critical / low warning / low critical), if it does I first need to check if I have already sent an alarm for that. If no alarm has been sent I then need to check if the user has requested alarm notification (mobile/email/both)
Currently this works. I Just don't like how heavy it is? Can I improve on this?
Thanks.
$inlet_moisture = $row["inlet_moisture"], and so on. In the process, I would also convert toboolean, to avoid having to explicitly check== 1everywhere. – Oli Charlesworth Sep 12 '11 at 15:34$email_notification = $row["email_notification"] == 1 ? true : false;– rlemon Sep 12 '11 at 15:35? true : false. – Oli Charlesworth Sep 12 '11 at 15:46