summaryrefslogtreecommitdiff
path: root/tests/basic/006.phpt
blob: 3b88acc32f9512822597f2ecda91416221cd7250 (plain)
1
2
3
4
5
6
7
8
--TEST--
Add 3 variables together and print result
--POST--
--GET--
--FILE--
<?php $a=1; $b=2; $c=3; $d=$a+$b+$c; echo $d?>
--EXPECT--
6