Can I say if(4 < $a < 44) instead of if(4 < $a && $a < 44)? (php)

Posted by Ole Jak on Stack Overflow See other posts from Stack Overflow or by Ole Jak
Published on 2010-05-06T22:07:55Z Indexed on 2010/05/06 22:18 UTC
Read the original article Hit count: 82

Filed under:
|

Can I use if(4 <= $a <= 44) instead of if(4 <= $a && $a <= 44)?

© Stack Overflow or respective owner

Related posts about php

Related posts about operators