Return to 009.phpt CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / tests / basic |
1.1 misho 1: --TEST-- 2: Subtract 3 variables and print result 3: --FILE-- 4: <?php $a=27; $b=7; $c=10; $d=$a-$b-$c; echo $d?> 5: --EXPECT-- 6: 10