nestedInlineHTML.test 143 B

12345678910111213141516
  1. InlineHTML node nested inside other code
  2. -----
  3. <?php
  4. function test() {
  5. ?>
  6. Test
  7. <?php
  8. }
  9. -----
  10. function test()
  11. {
  12. ?>
  13. Test
  14. <?php
  15. }