Skip to content

Instantly share code, notes, and snippets.

@ilhamarrouf
Created December 6, 2016 06:47
Show Gist options
  • Save ilhamarrouf/4c393f3916fa184cbfeec3d8824cbea5 to your computer and use it in GitHub Desktop.
Save ilhamarrouf/4c393f3916fa184cbfeec3d8824cbea5 to your computer and use it in GitHub Desktop.
Data Type PHP
<?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