radarrplexorganizrnginxsonarrdashboardheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximuxlandingpagestartpagelandinghtpcserverhomepagesabnzbd
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
596 B
54 lines
596 B
Handling of inline HTML
|
|
-----
|
|
<?php
|
|
|
|
function test() {
|
|
?>Foo<?php
|
|
}
|
|
-----
|
|
$stmts[0]->setAttribute('origNode', null);
|
|
-----
|
|
<?php
|
|
|
|
function test()
|
|
{
|
|
?>Foo<?php
|
|
}
|
|
-----
|
|
<?php
|
|
|
|
function test() {
|
|
foo();
|
|
?>Bar<?php
|
|
baz();
|
|
}
|
|
-----
|
|
// TODO Fix broken result
|
|
$stmts[0]->stmts[2] = $stmts[0]->stmts[1];
|
|
-----
|
|
<?php
|
|
|
|
function test() {
|
|
foo();
|
|
?>Bar<?php
|
|
Bar
|
|
}
|
|
-----
|
|
<?php
|
|
|
|
function test() {
|
|
foo();
|
|
?>Bar<?php
|
|
baz();
|
|
}
|
|
-----
|
|
// TODO Fix broken result
|
|
$stmts[0]->stmts[1] = $stmts[0]->stmts[2];
|
|
-----
|
|
<?php
|
|
|
|
function test() {
|
|
foo();<?php
|
|
baz();
|
|
baz();
|
|
}
|