Skip to content

Instantly share code, notes, and snippets.

@flaviors200
Last active May 10, 2019 01:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flaviors200/8ea4cdd619e1e314ca89d1e7e28f171d to your computer and use it in GitHub Desktop.
Save flaviors200/8ea4cdd619e1e314ca89d1e7e28f171d to your computer and use it in GitHub Desktop.
Weak typing
<?php
$string = 'foo';
$integer = 0;
if ($string == $integer) {
echo "I valori sono uguali";
} else {
echo "I valori non sono uguali";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment