mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-02 17:38:19 +01:00
16 lines
168 B
Plaintext
16 lines
168 B
Plaintext
|
Handling of inline HTML
|
||
|
-----
|
||
|
<?php
|
||
|
|
||
|
function test() {
|
||
|
?>Foo<?php
|
||
|
}
|
||
|
-----
|
||
|
$stmts[0]->setAttribute('origNode', null);
|
||
|
-----
|
||
|
<?php
|
||
|
|
||
|
function test()
|
||
|
{
|
||
|
?>Foo<?php
|
||
|
}
|