I have this strange problem. When debugging, I have sometimetimes code looking like this
<?php
$var = 15;
die($var);
die()
function works, but outputs nothing
However, this one works
<?php
$var = 15;
die($var."<-");
http://sandbox.phpcode.eu/g/81462.php
How is it possible? Did I miss something? or is it bug?