0
What is the meaning of && ?
5 ответов
+ 3
heres a lesson
https://www.sololearn.com/learn/PHP/1806/
0
&& is the logical operator in PHP!!
0
what is the purpose of this logical operator ? can you describe it ?
0
thank you so much. now I am understand proper and get clear vison on logical operator.
0
it is logical “and”, it can be used in conditions, such as
if(x>0 && x<5)
// do something