Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* НИКОГДА ТАК НЕ ДЕЛАЙ! */
- function AND($a, $b)
- {
- if ($a === true) {
- if ($b === true) {
- return true;
- } else {
- return false;
- }
- } else {
- return false;
- }
- }
- /* Зависит от ситуации */
- function AND($a, $b)
- {
- if ($a === true) {
- if ($b === true) {
- return true;
- }
- }
- return false;
- }
- /* Легко и не принужденно */
- function AND($a, $b)
- {
- if ($a === false) return false;
- if ($b === false) return false;
- return true;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement