1
0
Fork 0

sample: remove echo , which wont be indentical as decompiled

This commit is contained in:
Xuefer 2015-06-25 12:13:17 +08:00
parent 828ca4e4c5
commit b1c2e3462d
1 changed files with 3 additions and 3 deletions

View File

@ -292,9 +292,9 @@ abstract class ClassName
$a = $b && $c;
$a = $b || $c;
#if PHP_VERSION >= 530
echo $this::CONST_VALUE, PHP_EOL;
echo $object::CONST_VALUE, PHP_EOL;
echo CONST_VALUE, PHP_EOL;
echo $this::CONST_VALUE;
echo $object::CONST_VALUE;
echo CONST_VALUE;
$this::method();
$object::method();
$a = $b ?: $d;