Last active
October 28, 2022 16:13
-
-
Save saaeiddev/a28be45b9a95660189284b04fc5243e1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$a = array(4 , 4 , 5 , 6 , 7); | |
if($a[0] = 4 && $a[3] = 6){ | |
echo "yes, it is"; | |
} | |
else{ | |
echo "no, not"; | |
} | |
$b = 4; | |
$t = 7; | |
$d = 62; | |
if($b * $t * $d > 100 && $b + $t - $d < 30){ | |
echo "yes, this is true"; | |
} | |
else{ | |
echo "no, this is false"; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment