Skip to content

Instantly share code, notes, and snippets.

@hbsnow
Last active June 1, 2019 05:43
Show Gist options
  • Save hbsnow/92322b76c7d84768692dbab5f6e32cc9 to your computer and use it in GitHub Desktop.
Save hbsnow/92322b76c7d84768692dbab5f6e32cc9 to your computer and use it in GitHub Desktop.
論理演算テスト
<?php
function hoge() {
echo 'hoge';
return true;
}
if (true && hoge()) {
echo 'hage';
}
// -> hogehage
if (false && hoge()) {
echo 'hage';
}
// ->
// hoge()は実行されない
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment