php
1: --TEST-- 2: Add 3 variables together and print result 3: --FILE-- 4: <?php $a=1; $b=2; $c=3; $d=$a+$b+$c; echo $d?> 5: --EXPECT-- 6: 6