mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-11-27 04:14:44 +01:00
16 lines
143 B
Plaintext
16 lines
143 B
Plaintext
InlineHTML node nested inside other code
|
|
-----
|
|
<?php
|
|
|
|
function test() {
|
|
?>
|
|
Test
|
|
<?php
|
|
}
|
|
-----
|
|
function test()
|
|
{
|
|
?>
|
|
Test
|
|
<?php
|
|
} |