Php logics | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
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 Réponse
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