digitalnature / php-ref

A better alternative to print_r / var_dump
347 stars 59 forks source link

Initial @ breaks output of following @s (repro inside) #58

Open alystair opened 4 years ago

alystair commented 4 years ago

To reproduce:

$foo = @r('works');
$bar = @r('oh no');

echo $bar;

Interestingly if you echo $foo out first, both render ok...