repo.or.cz
/
phpt.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
switch to PHP_EOL throughout for better Windows support for test cases
[phpt.git]
/
tests-supporting
/
tests
/
math
/
multiplication.phpt
blob
9d9ed6d7f3b769359d98da7700f469800599e9d0
1
--TEST--
2
PHP is capable of basic multiplication
3
--FILE--
4
<?php
5
6
$a = 2.5;
7
$b = 2;
8
9
$result = $a * $b;
10
echo $result, PHP_EOL;
11
12
?>
13
===DONE===
14
--EXPECT--
15
5
16
===DONE===