Assignment operator: x /= y


SUBMITTED BY: henry1874w

DATE: June 4, 2017, 9:40 p.m.

FORMAT: Text only

SIZE: 98 Bytes

HITS: 709

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. $x = 10;
  6. $x /= 5;
  7. echo $x;
  8. ?>
  9. </body>
  10. </html>

comments powered by Disqus