fork download
  1. <?php
  2. var_dump(<<<HTML
  3.   <div style="font-size: 2em;">Hello World</div>
  4.   <!-- some comment -->
  5. HTML
  6. );
  7. if (true) {
  8. // some more PHP code here
  9. }
  10. ?>
  11. <span>Some more HTML code here</span>
  12. <!-- another comment -->
  13.  
Success #stdin #stdout 0.03s 52480KB
stdin
Standard input is empty
stdout
string(76) "    <div style="font-size: 2em;">Hello World</div>
    <!-- some comment -->"
<span>Some more HTML code here</span>
<!-- another comment -->