I was wondering if && is same as "and", and || is same as "or " in PHP.
I've done a few tests and it seems they behave the same. Are there any differences?
If not, are there any other php signs that have word equivalents and do you think it makes the code easier to read?
&&is AND, but&is AND (bitwise). Liekwise for||and|are OR and OR (bitwise), respectively. :: I take it back, PHP allows AND/OR words--amazing. Learn something new every day. – Brad Christie Dec 21 '10 at 17:28||and&&more readable, but I'd expect others to disagree. Stick with the convention of the environment you find yourself in. – Thomas Langston Dec 21 '10 at 17:35