1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-20 13:21:30 +02:00

Compile: Move ?><? removal to php_shrink

This commit is contained in:
Jakub Vrana
2025-03-13 17:33:42 +01:00
parent 9afbf1a465
commit 4c2a8b0050
3 changed files with 2 additions and 1 deletions

View File

@@ -33,3 +33,4 @@ check('$ab = 1; echo "$ab";', '$a=1;echo"$a";');
check('echo 1; echo 3;', 'echo 1,3;');
check('echo 1; ?>2<?php echo 3;', "echo 1,'2',3;");
check('/** preserve*/ $a; /** ignore */ /* also ignore */ // ignore too', '/** preserve*/$a;');
check('$a = 1; ?><?php ?><?php $a = 2;', '$a=1;$a=2;');