Php logics | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Php logics

Want to know how we can make logics in php

10th Aug 2017, 6:04 PM
monu gurung
monu gurung - avatar
1 Answer
0
// The result of the expression (false || true) is assigned to $e // Acts like: ($e = (false || true)) $e = false || true; // The constant false is assigned to $f and then true is ignored // Acts like: (($f = false) or true) $f = false or true;
10th Aug 2017, 6:31 PM
Martin Ed
Martin Ed - avatar