ऐसा इसलिए है क्योंकि यदि आप &&का उपयोग करते हैं तो दोनों शर्तें सत्य होनी चाहिए। यदि कोई एक शर्त असत्य हो जाती है तो समग्र स्थिति का मूल्यांकन असत्य हो जाता है।
PHP कोड इस प्रकार है -
उदाहरण
<!DOCTYPE html> <html> <body> <?php $firstCondition= "John"; $secondCondition = "David"; if ($firstCondition == "John" && $secondCondition == "David" && ($firstCondition == "Mike" || $firstCondition == "John")) { echo "The above condition is true"; } else { echo "The above condition is not true"; } ?> </body> </html>
आउटपुट
The above condition is true