Skip to content

Instantly share code, notes, and snippets.

@jonataa
Last active August 29, 2015 14:01
Show Gist options
  • Save jonataa/3a1d406f1fab377a345c to your computer and use it in GitHub Desktop.
Save jonataa/3a1d406f1fab377a345c to your computer and use it in GitHub Desktop.
Operadores Lógicos no PHP
<?php
$x = true;
$y = false;
$a = (50 == '50'); // true
$b = (50 === '50'); // false (tipo e valor)
$c = (50 != '50'); // false
$d = (50 !== '50'); // true
$e = 50 >= 20; // true
$f = 50 <= 10; // false
/** Referência: http://www.php.net/manual/pt_BR/language.operators.comparison.php **/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment