Files
faveo/vendor/nikic/php-parser/test/code/parser/stmt/inlineHTML.test
Bhanu Slathia b1f62846ab Update v1.0.6
2016-02-16 23:24:52 +05:30

27 lines
250 B
Plaintext

Inline HTML
-----
<?php
$a;
?>
B
<?php
$c;
?>
<?php
$d;
-----
array(
0: Expr_Variable(
name: a
)
1: Stmt_InlineHTML(
value: B
)
2: Expr_Variable(
name: c
)
3: Expr_Variable(
name: d
)
)