summaryrefslogtreecommitdiff
path: root/tests/basic/007.phpt
blob: dc808b73b67ff114873c85a4cfad3ddedb7da5ff (plain)
1
2
3
4
5
6
--TEST--
Multiply 3 variables and print result
--FILE--
<?php $a=2; $b=4; $c=8; $d=$a*$b*$c; echo $d?>
--EXPECT--
64