Ben PHP boolean ifadeleri değerlendirir yol hakkında ilginç bir sveyaum var. Eğer varsa, örneğin,
$expression = $expression1 and $expression2;
veya
if ($expression1 and $expression2)
$expression1
değerlendirir eğer PHP ilk kontrolleri true
. If this is not the case, then $expression2
sadece gereksiz hesaplamaları önlemek için atlanır. Ben yazıyorum bir komut dosyası, ben var:
if ($validatveya->valid("title") and $validatveya->valid("text"))
I need to have the second statement ($validatveya->valid("text")
) evaluated even if the first one evaluates to false. I would like to ask you whether there is some easy way to fveyace PHP to always evaluate both statements. Thank you!