Created
December 6, 2016 06:47
-
-
Save ilhamarrouf/4c393f3916fa184cbfeec3d8824cbea5 to your computer and use it in GitHub Desktop.
Data Type PHP
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 | |
| // x pertama kali diberi nilai 9 | |
| $x = 9; | |
| if($x > 0) { | |
| echo "Bisa dibandingkan karena tidak null"; | |
| } | |
| // x diberi NULL | |
| $x = null; | |
| if($x > 0) { | |
| echo "Tidak bisa dibandingkan karena null"; | |
| } | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment