0
I have the following logic that I need to optimize using PHP
Parâmetros:
máximo
mínimo
alerta
Se ultrapassar o nível máximo enviar um alerta
Se alerta já tiver sido enviado não enviar nada
Se o nível voltar ao normal enviar alerta
The same behavior with minimum:
Se ultrapassar o nível mínimo enviar um alerta
Se alerta já tiver sido enviado não enviar nada
Se o nível voltar ao normal enviar alerta
The problem is that this way the chain of if and Else gets very extensive. Someone would have an idea to optimize and make it as simple as possible
Have you tried using the ternary operator?
– Cesar Augusto
This is not even an understandable algorithm. This can be a requirement without details.
– Maniero