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