Skip to content

Instantly share code, notes, and snippets.

@ilhamarrouf
Last active December 7, 2016 23:20
Show Gist options
  • Save ilhamarrouf/8e8f607765866c5380f7f1b8d31c8927 to your computer and use it in GitHub Desktop.
Save ilhamarrouf/8e8f607765866c5380f7f1b8d31c8927 to your computer and use it in GitHub Desktop.
PHP Logical Operators
<?php
$x = 100;
/* Jika nilai $x di bawah ini sama dengan variabel $x yang telah dideklarasikan
maka akan mengeluarkan output false, begitu juga sebaliknya, Jika berbeda
makan akan mengeluarkan output true*/
if ($x !== 90) {
echo "Hello world!";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment