Skip to content

Instantly share code, notes, and snippets.

@flaviors200
Created May 15, 2019 15:30
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/ffa3be0e2e2d84619c9ba002286d6f70 to your computer and use it in GitHub Desktop.
Save flaviors200/ffa3be0e2e2d84619c9ba002286d6f70 to your computer and use it in GitHub Desktop.
Boolean type
<?php
$isLoaded = true;
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