A very simple code in php
<?php
$aaa = $_GET["aaa"];
echo $aaa + "\n";
$bbb = $_GET["bbb"];
echo $bbb+ "\n";
$ccc = $_GET["ccc"];
echo $ccc+ "\n";
the URL calling this
http://example.com?aaa=AAA&bbb=BBB&ccc=CCC
the result is completely blank. Nothing gets printed.
If I change the echos to
echo (string) ($aaa + "\n");
echo (string) ($bbb + "\n");
echo (string) ($ccc + "\n");
then the result is
000
Why?