Skip to content

Instantly share code, notes, and snippets.

@saaeiddev
Last active October 28, 2022 16:13
Show Gist options
  • Save saaeiddev/a28be45b9a95660189284b04fc5243e1 to your computer and use it in GitHub Desktop.
Save saaeiddev/a28be45b9a95660189284b04fc5243e1 to your computer and use it in GitHub Desktop.
<?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