Assignment operator: x *= y


SUBMITTED BY: henry1874w

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

FORMAT: Text only

SIZE: 97 Bytes

HITS: 567

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

comments powered by Disqus