mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
7 lines
117 B
PHP
7 lines
117 B
PHP
--TEST--
|
|
Multiply 3 variables and print result
|
|
--FILE--
|
|
<?php $a=2; $b=4; $c=8; $d=$a*$b*$c; echo $d?>
|
|
--EXPECT--
|
|
64
|