在PHP中划分变量值...不起作用

时间:2013-12-03 21:33:41

标签: php arrays

任何人都有任何关于我为什么没有得到任何输出的想法?

//我的代码

$numer = $times_positive['positive_occurrence'];
$denom = $times_tested['variable_occurrence'];
$percent_postive = $numer / $denom;
echo "it wins " . $percent_positive . " of the time.";

$ numer& $ denom是数组的值,我认为是整数。 当我回应它们(在这个例子中)$ numer = 25和$ demon = 50.当我划分它们时,我应该得到0.5,但它不会输出任何东西......

//我的输出: 它赢得了时间

我已经盯着这看了好几个小时......我知道我可能在这里做了一些非常愚蠢的事情,但需要一副新的眼睛。

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:4)

发现差异:

$percent_postive = $numer / $denom;
            ^----
echo "it wins " . $percent_positive . " of the time.";
                              ^-----

看到什么遗失?