Comparison operator: Less than or equal (<=)


SUBMITTED BY: henry1874w

DATE: June 12, 2017, 3:40 p.m.

FORMAT: Text only

SIZE: 164 Bytes

HITS: 373

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. $x = 50;
  6. $y = 50;
  7. var_dump($x <= $y); // returns true because $x is less than or equal to $y
  8. ?>
  9. </body>
  10. </html>

comments powered by Disqus