Skip to content

Instantly share code, notes, and snippets.

@flaviors200
Last active May 22, 2019 16:38
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/71bb790fb3223ef97c5e3ff32f852801 to your computer and use it in GitHub Desktop.
Save flaviors200/71bb790fb3223ef97c5e3ff32f852801 to your computer and use it in GitHub Desktop.
Non Boolean data types
<?php
$isLoaded = 1;
if ($isLoaded) {
echo "Carico\n";
} else {
echo "Non carico\n";
}
// Output: Carico
$isLoaded = "Carico";
if ($isLoaded) {
echo "Carico";
} else {
echo "Non carico";
}
// Output: Carico
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment