Increment operator: ++$x


SUBMITTED BY: henry1874w

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

FORMAT: Text only

SIZE: 90 Bytes

HITS: 337

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

comments powered by Disqus