1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/tests/basic/009.phpt
2004-05-19 08:45:46 +00:00

7 lines
119 B
PHP

--TEST--
Subtract 3 variables and print result
--FILE--
<?php $a=27; $b=7; $c=10; $d=$a-$b-$c; echo $d?>
--EXPECT--
10