mirror of
https://github.com/php/php-src.git
synced 2025-01-25 13:14:22 +08:00
9 lines
134 B
Plaintext
9 lines
134 B
Plaintext
|
--TEST--
|
||
|
Multiply 3 variables and print result
|
||
|
--POST--
|
||
|
--GET--
|
||
|
--FILE--
|
||
|
<?php $a=2; $b=4; $c=8; $d=$a*$b*$c; echo $d?>
|
||
|
--EXPECT--
|
||
|
64
|